/* Navicat Premium Dump SQL Source Server : 62.234.3.186 Source Server Type : MySQL Source Server Version : 80037 (8.0.37) Source Host : 62.234.3.186:3306 Source Schema : study_cloud Target Server Type : MySQL Target Server Version : 80037 (8.0.37) File Encoding : 65001 Date: 19/01/2026 17:55:54 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for ai_chat_message -- ---------------------------- DROP TABLE IF EXISTS `ai_chat_message`; CREATE TABLE `ai_chat_message` ( `message_id` bigint NOT NULL AUTO_INCREMENT COMMENT '消息ID', `session_id` bigint NOT NULL COMMENT '会话ID', `user_id` bigint NOT NULL COMMENT '用户ID(关联sys_user表)', `message_type` char(1) NOT NULL COMMENT '消息类型(1用户 2AI)', `message_content` text NOT NULL COMMENT '消息内容', `is_deleted` char(1) DEFAULT '0' COMMENT '是否删除(0否 1是)', `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`message_id`), KEY `idx_session_id` (`session_id`), KEY `idx_user_id` (`user_id`), KEY `idx_create_time` (`create_time`) ) ENGINE=InnoDB AUTO_INCREMENT=10146 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='AI聊天消息记录表'; -- ---------------------------- -- Records of ai_chat_message -- ---------------------------- BEGIN; INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10000, 1006, 1, '1', '1+2', '0', '2025-12-05 14:33:26'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10001, 1006, 1, '2', '1 + 2 equals **3**.', '0', '2025-12-05 14:33:44'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10002, 1006, 1, '1', '1+1\n、', '0', '2025-12-05 14:42:03'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10003, 1006, 1, '2', '1 + 1 = **2**', '0', '2025-12-05 14:42:20'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10004, 1006, 1, '1', '1+3', '0', '2025-12-05 14:42:29'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10005, 1006, 1, '2', '1 + 3 equals **4**.', '0', '2025-12-05 14:42:30'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10006, 1006, 1, '1', '1+4', '0', '2025-12-05 14:42:39'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10007, 1006, 1, '2', '1 + 4 equals **5**.', '0', '2025-12-05 14:42:40'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10008, 1007, 1, '1', '1+10', '0', '2025-12-05 14:49:22'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10009, 1007, 1, '2', '1 + 10 equals **11**.', '0', '2025-12-05 14:49:40'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10010, 1007, 1, '1', '1+11\n\\', '0', '2025-12-05 14:49:44'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10011, 1007, 1, '2', '1 + 11 = **12**', '0', '2025-12-05 14:49:45'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10012, 1006, 1, '1', '1“13', '0', '2025-12-05 14:53:44'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10013, 1006, 1, '2', '看起来你输入了“13”。请问你需要什么帮助?我可以为你提供关于数字13的有趣事实、文化背景,或者解答与13相关的任何问题。告诉我你的需求吧!', '0', '2025-12-05 14:53:46'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10014, 1006, 1, '1', '1+100', '0', '2025-12-05 15:02:08'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10015, 1006, 1, '2', 'The sum of 1 and 100 is:\n\n\\[ 1 + 100 = 101 \\]', '0', '2025-12-05 15:02:26'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10016, 1006, 1, '1', '1+100', '0', '2025-12-05 15:04:20'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10017, 1006, 1, '2', '1 + 100 equals **101**.', '0', '2025-12-05 15:04:20'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10018, 1006, 1, '1', '1+200', '0', '2025-12-05 15:04:27'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10019, 1006, 1, '2', 'The sum of 1 and 200 is:\n\n\\[ 1 + 200 = 201 \\]', '0', '2025-12-05 15:04:42'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10020, 1006, 1, '1', '1+200', '0', '2025-12-05 15:05:25'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10021, 1006, 1, '2', 'The sum of 1 and 200 is:\n\n\\[ 1 + 200 = 201 \\]', '0', '2025-12-05 15:05:26'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10022, 1006, 1, '1', '1+300', '0', '2025-12-05 15:09:20'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10023, 1006, 1, '2', 'The sum of 1 and 300 is:\n\n\\[ 1 + 300 = 301 \\]', '0', '2025-12-05 15:09:21'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10024, 1007, 1, '1', '1+2', '0', '2025-12-05 15:38:37'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10025, 1007, 1, '2', 'The sum of 1 and 2 is 3.', '0', '2025-12-05 15:38:41'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10026, 1007, 1, '1', '1+1000', '0', '2025-12-05 15:42:38'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10027, 1007, 1, '2', 'The sum of 1 and 1000 is:\n\n\\[ 1 + 1000 = 1001 \\]', '0', '2025-12-05 15:42:39'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10028, 1007, 1, '1', '1+2+3+...+100', '0', '2025-12-05 15:42:48'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10029, 1007, 1, '2', 'The sum of the first 100 natural numbers can be calculated using the formula for the sum of an arithmetic series:\n\n\\[\nS = \\frac{n(n + 1)}{2}\n\\]\n\nWhere:\n- \\( n \\) is the number of terms (in this case, 100).\n\nPlugging in the value:\n\n\\[\nS = \\frac{100 \\times 101}{2} = 50 \\times 101 = 5050\n\\]\n\n**Answer:** 5050', '0', '2025-12-05 15:43:05'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10030, 1007, 1, '1', '1', '0', '2025-12-05 15:43:25'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10031, 1007, 1, '1', '2', '0', '2025-12-05 15:43:26'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10032, 1007, 1, '2', '您好!我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。有关模型和产品的详细内容请参考官方文档。', '0', '2025-12-05 15:43:27'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10033, 1007, 1, '2', '您好,请问数字“23”有什么特别的含义吗?或者您希望了解与23相关的信息?例如:\n \n - 23是一个常见的数字,可能代表时间、日期(如2月3日)、年龄或其他含义。\n - 在某些文化或信仰中,数字23被认为具有特殊的意义。\n - 您是否在某个特定情境下看到或想到这个数字?\n \n 如果您能提供更多背景信息,我可以更好地帮助您解答!', '0', '2025-12-05 15:43:28'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10034, 1007, 1, '1', '1', '0', '2025-12-05 15:43:33'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10035, 1007, 1, '2', '您好!我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。有关模型和产品的详细内容请参考官方文档。', '0', '2025-12-05 15:43:35'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10036, 1007, 1, '1', '2', '0', '2025-12-05 15:43:48'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10037, 1007, 1, '2', '你好!请问有什么可以帮助你的吗?', '0', '2025-12-05 15:43:48'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10038, 1007, 1, '1', '1', '0', '2025-12-05 15:43:53'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10039, 1007, 1, '2', '', '0', '2025-12-05 15:43:53'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10040, 1007, 1, '1', '1', '0', '2025-12-05 15:43:53'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10041, 1007, 1, '2', '您好!请问有什么可以帮助您的?如果您有任何问题或需要信息,请随时告诉我。', '0', '2025-12-05 15:43:54'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10042, 1007, 1, '1', '2', '0', '2025-12-05 15:43:55'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10043, 1007, 1, '2', '你好!请问有什么我可以帮助你的吗?', '0', '2025-12-05 15:43:56'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10044, 1007, 1, '1', '1', '0', '2025-12-05 15:44:03'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10045, 1007, 1, '2', '你好!请问有什么我可以帮助你的吗?无论是学习、工作还是生活中的问题,都可以告诉我哦! 😊', '0', '2025-12-05 15:44:04'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10046, 1007, 1, '1', '1', '0', '2025-12-05 15:44:07'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10047, 1007, 1, '2', '您好!我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。有关模型和产品的详细内容请参考官方文档。', '0', '2025-12-05 15:44:08'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10048, 1007, 1, '1', '1', '0', '2025-12-05 15:44:33'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10049, 1007, 1, '2', '您好!我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。有关模型和产品的详细内容请参考官方文档。', '0', '2025-12-05 15:44:34'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10050, 1008, 1, '1', '你叫什么名字啊 ', '0', '2025-12-05 16:35:24'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10051, 1008, 1, '2', '您好!我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。如您有任何任何问题,我会尽我所能为您提供帮助。', '0', '2025-12-05 16:35:27'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10052, 1009, 1, '1', '沙发沙发沙发', '0', '2025-12-05 16:35:39'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10053, 1009, 1, '2', '好的,以下是一个简单的沙发设计灵感:\n\n**现代简约风格三人沙发**\n\n- **结构**:简洁的线条,低靠背,扶手向后倾斜,与靠背形成一体。\n- **材质**:金属框架(如钢或铝),搭配厚实的软垫。\n- **颜色**:中性色调(米白、灰色)为主,可搭配亮色抱枕点缀。\n- **功能**:内置USB接口和无线充电板,方便充电需求。\n- **尺寸**:适合三人 seating,长度约200cm,高度适中。\n\n这个设计注重舒适性和实用性,同时保持简洁大方的外观。希望这对你有帮助!如果需要更多细节或调整,请告诉我!', '0', '2025-12-05 16:35:43'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10054, 1010, 123, '1', '阿达', '0', '2025-12-05 16:42:07'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10055, 1010, 123, '2', '您好,我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。有关模型和产品的详细内容请参考官方文档。', '0', '2025-12-05 16:42:10'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10056, 1006, 1, '1', '1+44', '0', '2025-12-05 18:22:29'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10057, 1006, 1, '3', '❌ 出错了: 请求失败: Bad Gateway', '0', '2025-12-05 18:22:29'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10058, 1009, 1, '1', '1+100', '0', '2025-12-05 18:23:50'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10059, 1009, 1, '3', '❌ 出错了: 请求失败: Internal Server Error', '0', '2025-12-05 18:23:51'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10060, 1006, 1, '1', '1+200', '0', '2025-12-05 18:23:59'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10061, 1006, 1, '3', '❌ 出错了: 请求失败: Internal Server Error', '0', '2025-12-05 18:23:59'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10062, 1009, 1, '1', '1+2', '0', '2025-12-08 15:46:44'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10063, 1009, 1, '3', '❌ 出错了: 请求失败: Internal Server Error', '0', '2025-12-08 15:46:44'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10064, 1009, 1, '1', '2+2', '0', '2025-12-08 15:47:11'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10065, 1009, 1, '3', '❌ 出错了: 请求失败: Internal Server Error', '0', '2025-12-08 15:47:14'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10066, 1011, 110, '1', '1+2', '0', '2025-12-11 10:39:41'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10067, 1011, 110, '3', '❌ 出错了: 请求失败: Internal Server Error', '0', '2025-12-11 10:39:41'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10068, 1010, 123, '1', '收到', '0', '2025-12-11 10:56:08'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10069, 1010, 123, '3', '❌ 出错了: 请求失败: Bad Gateway', '0', '2025-12-11 10:56:35'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10070, 1009, 1, '1', '1+2', '0', '2025-12-18 11:13:06'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10071, 1009, 1, '3', '❌ 出错了: 网络连接失败,请检查网络或联系管理员', '0', '2025-12-18 11:13:06'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10072, 1009, 1, '1', '1+3', '0', '2025-12-18 11:13:29'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10073, 1009, 1, '3', '❌ 出错了: 网络连接失败,请检查网络或联系管理员', '0', '2025-12-18 11:13:29'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10074, 1009, 1, '1', '1+2', '0', '2025-12-18 11:18:14'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10075, 1009, 1, '3', '❌ 出错了: 小米MiMo API请求失败: Not Found', '0', '2025-12-18 11:18:15'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10076, 1009, 1, '1', '1+2', '0', '2025-12-18 11:20:00'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10077, 1009, 1, '3', '❌ 出错了: 小米MiMo API请求失败: Not Found', '0', '2025-12-18 11:20:00'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10078, 1009, 1, '1', '你好', '0', '2025-12-18 11:27:16'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10079, 1009, 1, '2', '你好!很高兴为你服务。\n\n请问有什么我可以帮助你的吗?无论是解答问题、进行对话,还是获取信息,我都在这里。', '0', '2025-12-18 11:27:17'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10080, 1009, 1, '1', '1+2+3+...+100=?', '0', '2025-12-18 11:27:40'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10081, 1009, 1, '2', 'The sum is **5,050**.\n\nHere are a few ways to find this:\n\n**1. Gauss\'s Formula (The Quickest Method)**\nThe formula for the sum of a series of numbers is:\n$$n \\times (number + 1) / 2$$\n\nFor the numbers 1 to 100:\n$$100 \\times (100 + 1) / 2$$\n$$100 \\times 101 / 2$$\n$$10100 / 2$$\n**= 5,050**\n\n**2. Pairing Method**\nIf you add the first and last number, it equals 101.\nIf you add the second and second-to-last number, it equals 101.\n* $1 + 100 = 101$\n* $2 + 99 = 101$\n* $3 + 98 = 101$\n\nThere are 50 such pairs.\n$$50 \\text{ pairs} \\times 101 \\text{ per pair} = \\mathbf{5,050}$$', '0', '2025-12-18 11:27:44'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10082, 1009, 1, '1', '1+9', '0', '2025-12-18 11:29:25'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10083, 1009, 1, '2', 'The sum of 1 and 9 is **10**.', '0', '2025-12-18 11:29:26'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10084, 1009, 1, '1', '1+2', '0', '2025-12-18 11:42:45'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10085, 1009, 1, '3', '❌ 出错了: 请求失败: Internal Server Error', '0', '2025-12-18 11:42:47'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10086, 1009, 1, '1', '1+2', '0', '2025-12-18 11:43:45'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10087, 1009, 1, '3', '❌ 出错了: 小米MiMo API请求失败: Not Found', '0', '2025-12-18 11:43:45'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10088, 1009, 1, '1', '1+2', '0', '2025-12-18 11:44:39'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10089, 1009, 1, '3', '❌ 出错了: 小米MiMo API请求失败: Not Found', '0', '2025-12-18 11:44:39'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10090, 1012, 2, '1', '1111', '0', '2025-12-18 15:06:41'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10091, 1012, 2, '3', '❌ 出错了: 小米MiMo API请求失败: Not Found', '0', '2025-12-18 15:06:42'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10092, 1012, 2, '1', '222', '0', '2025-12-18 15:07:08'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10093, 1012, 2, '3', '❌ 出错了: 小米MiMo API请求失败: Not Found', '0', '2025-12-18 15:07:08'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10094, 1009, 1, '1', '1+2', '0', '2025-12-25 14:27:58'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10095, 1009, 1, '2', 'The result of \\(1 + 2\\) is:\n\n\\[\n1 + 2 = \\boxed{3}\n\\]', '0', '2025-12-25 14:28:01'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10096, 1009, 1, '1', 'AI输出需要模拟快速的打字机效果,而不是一次性输出,如果输出很长的文本,效果就很差', '0', '2025-12-25 14:28:23'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10097, 1009, 1, '2', '为了解决AI输出逐个字符导致长文本效果差的问题,可以采取以下步骤:\n\n1. **调整AI生成方式**:让AI一次性生成完整的内容,避免逐个字符传输。这样前端可以一次性加载完整的文本,提升用户体验。\n\n2. **优化数据传输**:\n - 使用WebSocket建立持久连接,实现实时流式传输,使内容逐步显示在前端。\n - 或者将生成的文本分割成小块,逐步发送给前端,分段显示以减少延迟。\n\n3. **前端优化**:在前端使用骨架加载或其他技术,先显示占位符,再逐步填充内容,提升用户感知速度。\n\n4. **测试与评估**:分别测试不同的方案,评估其对性能和用户体验的影响,选择最合适的解决方案。\n\n通过这些步骤,可以有效改善长文本的输出效果,提供更流畅的用户体验。', '0', '2025-12-25 14:28:43'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10098, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 14:38:38'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10099, 1009, 1, '2', '思想道德与法治课程是一门综合性强、注重理论与实践相结合的基础课程。它旨在通过系统化的教学内容,提升学生的道德修养、法律意识以及社会责任感。以下是该课程的核心内容:\n\n### 1. 教学目标\n- **培养社会主义核心价值观**:引导学生树立正确的世界观、人生观和价值观。\n- **提升道德修养与法治意识**:帮助学生形成良好的道德品质,并增强法律观念,成为遵纪守法的公民。\n- **解决实际困惑**:通过理论学习和案例分析,指导学生在现实生活中处理思想、道德和法律问题。\n\n### 2. 教学内容\n- **思想部分**:\n - 马克思主义基本原理\n - 毛泽东思想与中国特色社会主义理论体系\n - 习近平新时代中国特色社会主义思想\n\n- **道德部分**:\n - 个人品德修养(诚实、守信等)\n - 家庭美德\n - 社会公德与集体主义精神\n\n- **法治部分**:\n - 法律基础知识(宪法、刑法、民法)\n - 依法治国原则\n - 法律权利与义务的行使\n\n### 3. 教学方法\n- **理论学习**:通过课堂讲授和案例分析,帮助学生理解抽象概念。\n- **实践环节**:包括社会调查、志愿服务等,增强学生的社会责任感。\n\n### 4. 考核方式\n- 综合评估学生的学习态度、考试成绩及实践活动表现,评定最终成绩。\n\n### 5. 适用对象\n主要面向大学生,尤其是需要全面提升综合素质的学生群体。\n\n通过这门课程的学习,学生不仅能提升自身的道德品质和法律意识,还能更好地适应社会,成为有能力且有责任感的社会主义建设者和接班人。', '0', '2025-12-25 14:38:52'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10100, 1009, 1, '1', '1+2', '0', '2025-12-25 14:42:23'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10101, 1009, 1, '2', '1 + 2 equals **3**.', '0', '2025-12-25 14:42:24'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10102, 1009, 1, '1', '1+2', '0', '2025-12-25 14:43:18'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10103, 1009, 1, '2', 'The sum of 1 and 2 is **3**.', '0', '2025-12-25 14:43:19'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10104, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 14:43:34'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10105, 1009, 1, '2', '“思想道德与法治”课程是一门综合性强、内容丰富的学科,旨在提升大学生的思想道德素质和法治意识。以下是关于该课程的详细分析:\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通过系统学习和实践活动,学生能够全面提升思想道德素质和法治意识,为未来社会发展贡献力量。', '0', '2025-12-25 14:43:50'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10106, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 14:45:32'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10107, 1009, 1, '2', '### 思想道德与法治课程介绍\n\n**课程概述:**\n\n“思想道德与法治”是高等院校的一门核心课程,旨在培养学生的社会主义核心价值观、法律意识和社会责任感。该课程结合理论学习和实践应用,帮助学生树立正确的世界观、人生观和价值观。\n\n**课程目标:**\n\n1. **价值引领**:引导学生认同并践行社会主义核心价值观,形成积极向上的价值取向。\n2. **法治教育**:培养学生的法治思维,了解基本法律知识,增强依法行事的意识。\n3. **道德提升**:通过案例分析和社会实践,提高道德判断和决策能力,促进个人品德修养。\n4. **社会责任感**:使学生理解社会公德、家庭美德和个人品德的重要性,增强服务社会的责任感。\n\n**课程内容:**\n\n1. **理论学习:**\n - 马克思主义基本原理与思想道德建设\n - 中华优秀传统文化中的道德智慧\n - 社会主义核心价值观的内涵与实践\n - 法治理念、法律体系及宪法精神\n\n2. **案例分析:**\n - 通过真实案例,分析道德抉择和法律适用,帮助学生理解理论知识的实际应用。\n\n3. **社会实践:**\n - 组织参观、志愿服务等活动,让学生在实践中体会思想道德建设和社会治理的重要性。\n\n**教学方法:**\n\n- **课堂讲授**:系统讲解理论知识。\n- **小组讨论**:探讨热点问题,培养批判性思维。\n- **角色扮演**:模拟情景,体验不同角色的道德和法律考量。\n- **案例分析**:深入分析案例,提升解决问题的能力。\n\n**课程意义:**\n\n1. **个人成长**:帮助学生树立正确的价值观,提高道德修养和法治意识,促进全面发展。\n2. **社会贡献**:培养有责任感和社会公德心的公民,为构建和谐社会贡献力量。\n\n通过这门课程的学习,学生不仅能够提升自身的综合素质,还能更好地适应社会发展的需要,成为有理想、有道德、有文化、有纪律的新时代人才。', '0', '2025-12-25 14:45:42'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10108, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 14:54:05'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10109, 1009, 1, '2', '思想道德与法治课程是一门针对中国大学生的重要课程,旨在培养学生的社会主义核心价值观、法治意识和社会责任感。以下是对该课程的详细介绍:\n\n### 1. 课程概述\n- **目标**:帮助学生树立正确的世界观、人生观和价值观,增强法治观念,提升社会责任感。\n- **内容**:\n - **绪论**:介绍课程的重要性及学习方法。\n - **社会主义核心价值观**:涵盖国家、社会和个人层面的价值观。\n - **新时代思想理念**:包括习近平新时代中国特色社会主义思想。\n - **道德修养**:涉及个人品德和公共道德,强调诚信友善。\n - **法律基础**:讲解宪法、刑法、民法等基本法律知识。\n - **实践与应用**:通过案例分析和社会调查提升实际应用能力。\n\n### 2. 课程特点\n- 理论与实践结合,注重培养解决实际问题的能力。\n- 强调价值引领和法治导向,培养正确的价值观和守法意识。\n\n### 3. 学习意义\n- 提升思想道德水平和个人修养。\n- 增强法治意识,学会用法律保护自己。\n- 全面发展,成为有责任感的公民。\n\n### 4. 教学安排\n- **理论教学**:涵盖课程各部分内容。\n- **实践教学**:通过案例分析和社会调查提升应用能力。\n- **考试方式**:考核与考试相结合。\n\n### 5. 推荐教材\n- 《思想道德与法治》(马克思主义出版社)。\n\n总之,该课程不仅传授理论知识,还注重培养学生的实际应用能力和责任感。学生将从中受益匪浅,成为有道德、懂法律、负责任的公民。', '0', '2025-12-25 14:54:19'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10110, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:05:20'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10111, 1009, 1, '2', '《思想道德与法治》是中国高校中的一门公共必修课程,主要面向本科生开设,旨在培养学生的社会主义核心价值观、法治观念和道德素质。该课程结合了思想教育、道德修养和法律知识的内容,强调理论学习与实践相结合。\n\n### 课程内容:\n1. **思想教育**:包括马克思主义基本原理、中国特色社会主义理论体系、习近平新时代中国特色社会主义思想等内容,帮助学生树立正确的世界观、人生观和价值观。\n2. **道德修养**:注重个人品德的培养,如爱国情怀、集体主义精神、诚信友善等,引导学生形成良好的道德品质和社会责任感。\n3. **法治教育**:讲解宪法、法律的基本知识,分析案例,培养学生依法办事、依法维权的能力。\n\n### 教学方法:\n- 理论讲授与案例分析相结合;\n- 课堂讨论和实践教学(如模拟法庭、社会调查);\n- 强调理论联系实际,注重培养学生的实践能力和法治思维。\n\n### 课程目标:\n1. 帮助学生提高思想道德素质和法治意识;\n2. 引导学生正确处理个人与社会的关系;\n3. 培养学生具备良好的道德判断力和社会责任感。\n\n这门课程不仅帮助学生了解中国的法律体系,还注重培养学生的综合素质,为今后的学习、工作和生活奠定坚实的思想道德和法律基础。', '0', '2025-12-25 15:05:31'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10112, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:10:22'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10113, 1009, 1, '2', '《思想道德与法治》是一门针对高校学生的公共必修课程,属于思想政治理论课的重要组成部分。该课程以马克思主义为指导,结合中国社会主义核心价值观和法律法规,旨在帮助学生树立正确的世界观、人生观、价值观,增强法治意识和社会责任感。\n\n### 课程内容\n1. **思想教育**:学习马克思主义基本原理、中国特色社会主义理论体系,帮助学生形成科学的世界观和方法论。\n2. **道德教育**:培养学生的社会主义核心价值观,提升道德素质和社会责任感,引导学生践行社会公德、职业道德和家庭美德。\n3. **法治教育**:普及法律知识,增强法治观念,培养学生依法办事、依法维权的能力。\n\n### 课程目标\n- 帮助学生提高思想道德素质和法治意识。\n- 引导学生正确处理个人与集体、自由与纪律、权利与义务等关系。\n- 培养学生适应社会、服务人民的能力。\n\n### 教学方法\n- 理论学习:通过课堂讲授,帮助学生掌握思想道德和法律的基本原理。\n- 实践教学:结合案例分析、情境模拟和社会实践活动,增强学生的实践能力和法治观念。\n\n这门课程不仅是一门理论课,更注重培养学生的综合素质和实际应用能力,为学生成长成才奠定坚实的思想基础。', '0', '2025-12-25 15:10:30'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10114, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:14:44'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10115, 1009, 1, '2', '思想道德与法治是中国普通高等学校的一门必修课程,属于思想政治理论课的重要组成部分。该课程以马克思主义为指导,紧密结合中国社会主义特色,旨在帮助学生树立正确的世界观、人生观和价值观,增强法治意识和社会责任感。\n\n### 课程主要内容:\n1. **思想道德教育**:包括爱国主义、集体主义、社会主义教育,强调个人品德修养、社会公德、家庭美德和个人诚信等方面。\n2. **法治教育**:介绍中国法律的基本原理、法律体系以及宪法和主要法律的重要性,培养学生的法治观念和依法行事的能力。\n\n### 教学目标:\n- 提高学生的思想道德素质和法治意识。\n- 培养学生分析问题和解决问题的能力,帮助其正确处理个人与社会的关系。\n- 引导学生树立正确的价值取向和社会责任感。\n\n### 课程设置:\n通常包括理论教学和实践环节。理论部分通过课堂讲授、案例分析等方式进行;实践环节可能包括参观法律机构、参与社会实践活动等。\n\n### 评价方式:\n课程一般采用考试、论文、平时表现等多种方式进行综合评价。\n\n### 学习意义:\n思想道德与法治课程不仅帮助学生掌握必要的法律知识,还能提升其思想道德素质,为学生的全面发展和社会和谐稳定做出贡献。', '0', '2025-12-25 15:14:51'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10116, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:15:22'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10117, 1009, 1, '2', '思想道德与法治课程是一门旨在提升学生的道德修养和法治意识的基础性课程。以下是该课程的主要内容:\n\n### 1. **中国优秀传统文化**\n - 探讨中国传统哲学,如儒家学说(孔子的“仁”,孟子的“义”)和道家思想(老子、庄子),并分析其现代意义。\n\n### 2. **社会主义核心价值观**\n - 深入学习富强、民主、文明、和谐,自由、平等、公正、法治,爱国、敬业、诚信、友善等价值观,并探讨如何在日常生活中践行。\n\n### 3. **道德教育**\n - 包括个人品德(如诚实守信)、社会公德和职业道德的培养,强调责任感和奉献精神。\n\n### 4. **法治教育**\n - 讲解宪法和法律体系,分析依法行政、司法公正的重要性,并指导如何依法维权。\n\n### 5. **社会责任与新时代道德要求**\n - 强调在新时代背景下,如何具备社会责任感,积极参与社会建设(如志愿服务、环保)。\n\n### 6. **案例分析**\n - 通过历史和现实案例,展示思想道德和法治的实际应用,增强理论联系实际的能力。\n\n### 目标\n- 提升学生的思想觉悟和法律意识。\n- 培养正确的价值观、人生观和道德观。\n- 帮助学生成为有道德、守法律的社会主义建设者。\n\n通过系统学习和实践,学生将能够更好地应对生活中的道德挑战,并在社会中发挥积极作用。', '0', '2025-12-25 15:15:33'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10118, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:16:38'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10119, 1009, 1, '2', '“思想道德与法治”课程是一门针对大学生的思想政治理论课,旨在培养学生的综合素质,结合思想、道德和个人行为规范以及法律知识,帮助学生形成正确的价值观、人生观和世界观。以下是对这门课程的详细介绍:\n\n### 1. 课程名称\n- **思想道德与法治**\n\n### 2. 主要内容\n\n#### (1)绪论\n- **课程性质**:思想政治理论课的重要组成部分。\n- **学习意义**:帮助学生提升思想道德素质和法治素养,培养全面发展的社会主义建设者和接班人。\n\n#### (2)思想道德的理论基础\n- **马克思主义基本原理**:提供科学的世界观和方法论。\n- **社会主义核心价值观**:强调国家、社会和个人层面的价值导向。\n- **中华优秀传统文化**:传承美德,弘扬传统。\n\n#### (3)法治基础与宪法法律知识\n- **法理学基础**:了解法律的起源和作用。\n- **中国法律体系**:涵盖宪法、刑法、民法等。\n- **宪法内容与地位**:明确国家根本制度和任务。\n- **法律权利与义务**:理解权利的行使和义务的履行。\n\n#### (4)道德的实践应用\n- **道德修养**:提升个人品德和社会责任感。\n- **社会功德**:关注公共利益,服务他人。\n- **家庭美德**:处理好家庭关系,促进和谐。\n- **个人品德**:培养自我约束能力。\n\n#### (5)法治思维与法律实务\n- **法律思维**:运用法治视角分析问题。\n- **法律实务**:学习解决实际问题的方法,如合同签订、权益维护等。\n\n### 3. 课程目标\n\n#### (1)提升素质\n- **思想道德素质**:培养正确的价值观和良好的道德品质。\n- **法治素养**:增强法律意识,了解基本法律知识。\n\n#### (2)培养能力\n- **分析判断力**:识别和处理日常中的法律问题。\n- **实践能力**:将理论应用于实际情境中。\n\n### 4. 学习要求\n\n#### (1)课前准备\n- 预习教材内容,明确重点和疑问点。\n\n#### (2)课堂参与\n- 积极参与讨论,深入理解课程内容。\n\n#### (3)课后复习\n- 巩固知识,完成作业,加深理解和记忆。\n\n#### (4)社会实践\n- 参与社会活动,践行道德规范和法治理念。\n\n### 5. 考核方式\n\n- **平时成绩**:出勤、课堂表现、作业完成情况。\n- **期中考试**:测试对课程内容的掌握程度。\n- **期末考试**:综合考察理论知识和应用能力。\n\n### 总结\n通过“思想道德与法治”课程,学生将提升思想道德水平和法治意识,培养解决实际问题的能力。这不仅有助于个人成长,也为社会和谐与发展贡献力量。', '0', '2025-12-25 15:16:56'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10120, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:25:50'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10121, 1009, 1, '3', '❌ 出错了: 请求失败: Bad Gateway', '0', '2025-12-25 15:26:17'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10122, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:28:11'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10123, 1009, 1, '3', '❌ 出错了: 请求失败: Forbidden', '0', '2025-12-25 15:28:11'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10124, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:28:17'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10125, 1009, 1, '3', '❌ 出错了: 请求失败: Forbidden', '0', '2025-12-25 15:28:17'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10126, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:29:04'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10127, 1009, 1, '3', '❌ 出错了: 请求失败: Forbidden', '0', '2025-12-25 15:29:04'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10128, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:47:02'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10129, 1009, 1, '3', '❌ 出错了: 请求失败: Internal Server Error', '0', '2025-12-25 15:47:04'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10130, 1009, 1, '1', '1+2', '0', '2025-12-25 15:47:58'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10131, 1009, 1, '3', '❌ 出错了: 请求失败: Internal Server Error', '0', '2025-12-25 15:47:58'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10132, 1009, 1, '1', '1+1', '0', '2025-12-25 15:48:10'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10133, 1009, 1, '3', '❌ 出错了: 请求失败: Internal Server Error', '0', '2025-12-25 15:48:11'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10134, 1009, 1, '1', '1+1', '0', '2025-12-25 15:49:47'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10135, 1009, 1, '3', '❌ 出错了: 请求失败: Internal Server Error', '0', '2025-12-25 15:49:48'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10136, 1009, 1, '1', '1+1', '0', '2025-12-25 15:51:27'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10137, 1009, 1, '2', '1 + 1 equals **2**.', '0', '2025-12-25 15:51:28'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10138, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:51:40'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10139, 1009, 1, '2', '### 思想道德与法治课程介绍\n\n**思想道德与法治**是一门针对大学生开设的公共必修课程,旨在通过理论教学和实践教育相结合的方式,培养学生的社会主义核心价值观,提升其思想道德素质和法治意识。该课程是高校思想政治教育的重要组成部分,对于帮助学生树立正确的世界观、人生观、价值观具有重要作用。\n\n#### 一、课程内容\n1. **思想教育** \n - 马克思主义基本原理(如马克思主义哲学、政治经济学) \n - 中国特色社会主义理论体系(如毛泽东思想、邓小平理论、“三个代表”重要思想、科学发展观、习近平新时代中国特色社会主义思想) \n - 中国梦的内涵与实现路径 \n\n2. **道德教育** \n - 社会主义核心价值观(富强、民主、文明、和谐;自由、平等、公正、法治;爱国、敬业、诚信、友善) \n - 个人品德修养(如诚实守信、友善待人、勤俭节约等) \n - 家庭美德与社会公德 \n\n3. **法治教育** \n - 宪法和法律的基本原则(如国家机构的组织和职权、公民的基本权利和义务) \n - 刑法、民法、行政法等相关法律法规 \n - 法治思维的培养与实践 \n\n#### 二、课程目标\n- 帮助学生树立正确的世界观、人生观和价值观,增强社会责任感和历史使命感。 \n- 提高学生的道德修养,培养良好的道德品质和社会责任感。 \n- 强化法治意识,了解基本法律知识,提升依法行事的能力。 \n\n#### 三、教学方法\n1. **理论讲授**:通过课堂讲解,系统传授思想道德与法治的基本理论和知识。 \n2. **案例分析**:结合实际案例,深入分析社会现象背后的法律、道德问题。 \n3. **实践环节**:组织参观、模拟法庭、情景剧表演等活动,增强学生的体验感和参与感。 \n\n#### 四、学习效果\n- 增强学生的社会主义核心价值观认同感。 \n- 提高学生的思想道德素质和法治意识。 \n- 为学生成长为德才兼备的社会主义建设者和接班人奠定基础。 \n\n通过这门课程的学习,学生不仅能够更好地理解国家的法律法规和社会道德规范,还能够在未来的生活中做到知法守法、明德向善,成为有责任感的社会公民。', '0', '2025-12-25 15:51:52'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10140, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:52:39'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10141, 1009, 1, '2', '### 思想道德与法治课程介绍\n\n**思想道德与法治**是一门针对中国高校学生的公共基础必修课程,旨在培养学生的综合素质,提升其思想道德水平和法治意识。该课程结合马克思主义基本原理、中国特色社会主义理论体系以及中华优秀传统文化,帮助学生树立正确的世界观、人生观和价值观。\n\n#### **课程目标**\n1. **思想政治教育**:引导学生学习马克思主义基本原理、毛泽东思想、邓小平理论、“三个代表”重要思想、科学发展观以及习近平新时代中国特色社会主义思想。\n2. **道德品质培养**:提升学生的道德修养,帮助其理解社会主义核心价值观,并在家庭、学校和社会生活中践行良好的道德规范。\n3. **法治意识强化**:通过学习宪法、法律和法规,增强学生的法律意识,培养学生依法行事的能力和法治思维。\n\n#### **主要内容**\n1. **思想教育**:\n - 马克思主义基本原理\n - 中国共产党思想政治教育的历史与实践\n - 习近平新时代中国特色社会主义思想\n\n2. **道德教育**:\n - 社会主义核心价值观\n - 中华传统美德\n - 职业道德和社会责任\n\n3. **法治教育**:\n - 宪法和法律基础知识\n - 刑法、民法、行政法等基本内容\n - 法治社会的建设与个人权利义务\n\n#### **教学方法**\n- 理论讲授:通过课堂教学系统讲解思想道德和法律的基本理论。\n- 案例分析:结合实际案例,增强学生的理解和应用能力。\n- 实践环节:组织参观、模拟法庭、法治辩论等活动,强化实践体验。\n\n#### **课程意义**\n- **提升综合素质**:帮助学生全面发展,在思想、道德和法治方面打下坚实基础。\n- **培养社会责任感**:引导学生树立正确的价值观,增强社会责任感和历史使命感。\n- **促进终身发展**:为学生的未来发展提供思想道德和法律保障,使其更好地适应社会。\n\n通过这门课程的学习,学生不仅能提升自身的综合素质,还能为未来的学习和生活奠定坚实的理论基础和社会责任感。', '0', '2025-12-25 15:52:51'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10142, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:56:48'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10143, 1009, 1, '2', '思想道德与法治课程是一门综合性强、内容丰富的课程,旨在培养学生的综合素质和社会责任感。以下是该课程的详细介绍:\n\n### 一、课程概述\n思想道德与法治课程是针对大学生开设的基础必修课,结合了理论学习和实践要求。课程设计注重知识传授与能力培养并重,帮助学生树立正确的世界观、人生观和价值观。\n\n### 二、主要内容模块\n1. **中国特色社会主义思想**\n - 探讨马克思主义基本原理及其在中国的运用和发展。\n - 学习习近平新时代中国特色社会主义思想,了解其历史背景和现实意义。\n\n2. **中国共产党概论**\n - 回顾党的发展历程,分析党的领导地位和作用。\n - 理解党的政策制定过程及对国家发展的指导作用。\n\n3. **社会主义核心价值观**\n - 强调社会公德、职业道德和个人品德的培养。\n - 指导学生在日常生活中践行社会主义核心价值观。\n\n4. **中华优秀传统文化**\n - 介绍儒家思想、道家哲学等文化精髓,提升文化自信。\n - 探讨传统文化在现代社会中的传承与发展。\n\n5. **法律基础**\n - 讲解宪法、刑法、民法等基本法律知识。\n - 强调国家安全和网络法治的重要性,培养法治思维。\n\n### 三、课程目标\n- 提升理论素养,增强法治观念。\n- 培养道德修养和社会责任感。\n- 锻炼实践能力,提高解决实际问题的能力。\n\n### 四、学习方法建议\n1. **理论联系实际**:结合社会现象和自身经历理解理论知识。\n2. **参与社会实践**:通过志愿服务等活动提升综合素质。\n3. **案例分析**:关注时事热点,运用所学知识进行分析讨论。\n4. **注重积累**:广泛阅读,扩展知识面。\n\n### 五、考核方式\n- 平时成绩(课堂表现、作业完成情况)\n- 期中和期末考试\n- 社会实践报告\n- 课堂互动参与度\n\n通过系统学习和积极参与,学生不仅能掌握必要的理论知识,还能提升道德修养和法治意识,为未来发展奠定坚实基础。', '0', '2025-12-25 15:57:05'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10144, 1009, 1, '1', '思想道德与法治课程介绍', '0', '2025-12-25 15:57:22'); INSERT INTO `ai_chat_message` (`message_id`, `session_id`, `user_id`, `message_type`, `message_content`, `is_deleted`, `create_time`) VALUES (10145, 1009, 1, '2', '### 思想道德与法治课程学习计划\n\n为了系统地掌握思想道德与法治课程内容并有效应用所学知识,我制定了以下学习计划:\n\n1. **绪论部分**:\n - 了解课程的重要性,明确学习目标和方法。\n - 反思自身的思想道德现状,设定改进方向。\n\n2. **社会主义核心价值观**:\n - 记忆并理解国家、社会和个人层面的价值观。\n - 关注时事新闻,分析如何体现这些价值观。\n\n3. **习近平新时代中国特色社会主义思想**:\n - 学习具体内容,如“五位一体”总体布局和“四个全面”战略布局。\n - 了解中国梦的内涵,并思考个人在实现中的角色。\n\n4. **中华优秀传统文化**:\n - 阅读经典文献,理解传统道德理念。\n - 参与传统文化活动,体验节日习俗的意义。\n\n5. **法律基础**:\n - 学习宪法、刑法和民法典的基本内容。\n - 通过案例分析理解法律条文的实际应用。\n\n6. **网络生活与道德规范**:\n - 分析自身网络行为,识别并避免不道德或违法行为。\n - 关注网络安全新闻,了解防护措施。\n\n7. **职业素养与社会责任**:\n - 研究不同职业的职业道德要求。\n - 制定个人职业生涯规划,融入社会责任感。\n\n8. **实践应用**:\n - 参与社会实践活动,如志愿服务,提升责任感。\n - 将所学知识应用于日常生活和学习中,解决实际问题。\n\n9. **定期复习与总结**:\n - 每周复习课程内容,整理笔记和心得。\n - 总结学习成果,调整学习方法,确保持续进步。\n\n通过以上计划,我期望能够在思想、法律和职业等方面全面提升自己,成为一名具备高尚道德和法治素养的高素质人才。', '0', '2025-12-25 15:57:38'); COMMIT; -- ---------------------------- -- Table structure for ai_chat_session -- ---------------------------- DROP TABLE IF EXISTS `ai_chat_session`; CREATE TABLE `ai_chat_session` ( `session_id` bigint NOT NULL AUTO_INCREMENT COMMENT '会话ID', `user_id` bigint NOT NULL COMMENT '用户ID(关联sys_user表)', `session_title` varchar(200) DEFAULT NULL COMMENT '会话标题(默认取用户首条消息内容)', `is_deleted` char(1) DEFAULT '0' COMMENT '是否删除(0否 1是)', `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`session_id`), KEY `idx_user_id` (`user_id`), KEY `idx_create_time` (`create_time`) ) ENGINE=InnoDB AUTO_INCREMENT=1013 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='AI聊天会话表'; -- ---------------------------- -- Records of ai_chat_session -- ---------------------------- BEGIN; INSERT INTO `ai_chat_session` (`session_id`, `user_id`, `session_title`, `is_deleted`, `create_time`, `update_time`) VALUES (1006, 1, '1+2', '0', '2025-12-05 14:33:26', '2025-12-05 18:24:00'); INSERT INTO `ai_chat_session` (`session_id`, `user_id`, `session_title`, `is_deleted`, `create_time`, `update_time`) VALUES (1007, 1, '1+10', '0', '2025-12-05 14:49:22', '2025-12-05 15:44:33'); INSERT INTO `ai_chat_session` (`session_id`, `user_id`, `session_title`, `is_deleted`, `create_time`, `update_time`) VALUES (1008, 1, '你叫什么名字啊 ', '0', '2025-12-05 16:35:23', '2025-12-05 16:35:24'); INSERT INTO `ai_chat_session` (`session_id`, `user_id`, `session_title`, `is_deleted`, `create_time`, `update_time`) VALUES (1009, 1, '沙发沙发沙发', '0', '2025-12-05 16:35:38', '2025-12-25 15:57:23'); INSERT INTO `ai_chat_session` (`session_id`, `user_id`, `session_title`, `is_deleted`, `create_time`, `update_time`) VALUES (1010, 123, '阿达', '0', '2025-12-05 16:42:07', '2025-12-11 10:56:09'); INSERT INTO `ai_chat_session` (`session_id`, `user_id`, `session_title`, `is_deleted`, `create_time`, `update_time`) VALUES (1011, 110, '1+2', '0', '2025-12-11 10:39:40', '2025-12-11 10:39:41'); INSERT INTO `ai_chat_session` (`session_id`, `user_id`, `session_title`, `is_deleted`, `create_time`, `update_time`) VALUES (1012, 2, '1111', '0', '2025-12-18 15:06:41', '2025-12-18 15:07:08'); COMMIT; -- ---------------------------- -- Table structure for ai_usage_statistics -- ---------------------------- DROP TABLE IF EXISTS `ai_usage_statistics`; CREATE TABLE `ai_usage_statistics` ( `stat_id` bigint NOT NULL AUTO_INCREMENT COMMENT '统计ID', `user_id` bigint NOT NULL COMMENT '用户ID(关联sys_user表)', `stat_date` date NOT NULL COMMENT '统计日期', `session_count` int DEFAULT '0' COMMENT '会话次数', `message_count` int DEFAULT '0' COMMENT '消息总数', `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`stat_id`), UNIQUE KEY `uk_user_date` (`user_id`,`stat_date`) ) ENGINE=InnoDB AUTO_INCREMENT=157 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户AI使用统计表'; -- ---------------------------- -- Records of ai_usage_statistics -- ---------------------------- BEGIN; INSERT INTO `ai_usage_statistics` (`stat_id`, `user_id`, `stat_date`, `session_count`, `message_count`, `create_time`, `update_time`) VALUES (3, 1, '2025-12-05', 5, 60, '2025-12-05 14:30:18', '2025-12-05 18:23:59'); INSERT INTO `ai_usage_statistics` (`stat_id`, `user_id`, `stat_date`, `session_count`, `message_count`, `create_time`, `update_time`) VALUES (62, 123, '2025-12-05', 1, 2, '2025-12-05 16:42:07', '2025-12-05 16:42:10'); INSERT INTO `ai_usage_statistics` (`stat_id`, `user_id`, `stat_date`, `session_count`, `message_count`, `create_time`, `update_time`) VALUES (71, 1, '2025-12-08', 0, 4, '2025-12-08 15:46:44', '2025-12-08 15:47:15'); INSERT INTO `ai_usage_statistics` (`stat_id`, `user_id`, `stat_date`, `session_count`, `message_count`, `create_time`, `update_time`) VALUES (75, 110, '2025-12-11', 1, 2, '2025-12-11 10:39:40', '2025-12-11 10:39:41'); INSERT INTO `ai_usage_statistics` (`stat_id`, `user_id`, `stat_date`, `session_count`, `message_count`, `create_time`, `update_time`) VALUES (78, 123, '2025-12-11', 0, 2, '2025-12-11 10:56:08', '2025-12-11 10:56:35'); INSERT INTO `ai_usage_statistics` (`stat_id`, `user_id`, `stat_date`, `session_count`, `message_count`, `create_time`, `update_time`) VALUES (80, 1, '2025-12-18', 0, 20, '2025-12-18 11:13:06', '2025-12-18 11:44:39'); INSERT INTO `ai_usage_statistics` (`stat_id`, `user_id`, `stat_date`, `session_count`, `message_count`, `create_time`, `update_time`) VALUES (100, 2, '2025-12-18', 1, 4, '2025-12-18 15:06:41', '2025-12-18 15:07:08'); INSERT INTO `ai_usage_statistics` (`stat_id`, `user_id`, `stat_date`, `session_count`, `message_count`, `create_time`, `update_time`) VALUES (105, 1, '2025-12-25', 0, 52, '2025-12-25 14:27:58', '2025-12-25 15:57:38'); COMMIT; -- ---------------------------- -- Table structure for base_academic -- ---------------------------- DROP TABLE IF EXISTS `base_academic`; CREATE TABLE `base_academic` ( `id` bigint NOT NULL AUTO_INCREMENT, `school_id` bigint DEFAULT NULL COMMENT '学校ID', `name` varchar(255) DEFAULT NULL COMMENT '名称', `start_date` datetime DEFAULT NULL COMMENT '开始时间', `end_date` datetime DEFAULT NULL COMMENT '结束时间', `pid` bigint DEFAULT NULL COMMENT '父ID', `is_current` int DEFAULT '0' COMMENT '是否当前学期 0 否 1是', `is_semester` int DEFAULT NULL COMMENT '是否是学期', `is_del` int DEFAULT '0' COMMENT '删除标识', `state` int DEFAULT NULL COMMENT '状态', `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人', `create_time` datetime DEFAULT NULL COMMENT '创建日期', `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '更新人', `update_time` datetime DEFAULT NULL COMMENT '更新日期', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='学年学期设置'; -- ---------------------------- -- Records of base_academic -- ---------------------------- BEGIN; INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, 1, '2025-2026 学年', NULL, NULL, NULL, 1, 0, 0, 0, NULL, NULL, '2025-10-31 17:00:52', NULL, '2025-11-22 15:50:39'); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 1, '222', NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, '2025-10-31 17:02:29', NULL, '2025-11-03 23:33:33'); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (11, 1, '6666', NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, '2025-10-31 17:09:55', NULL, NULL); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (13, 1, '第一学期', '2025-09-01 00:00:00', '2026-02-01 00:00:00', 6, 1, 1, 0, 0, NULL, NULL, '2025-10-31 18:19:14', NULL, '2026-01-16 17:40:12'); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (14, 1, '第二学期', '2026-03-01 00:00:00', '2026-07-15 00:00:00', 6, 0, 1, 0, 0, NULL, NULL, '2025-10-31 18:19:40', NULL, '2026-01-10 23:10:27'); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (16, 1, 'eeee', NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, '2025-10-31 18:50:33', NULL, NULL); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (20, 1, 'dddddd', NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, '2025-10-31 18:51:43', NULL, NULL); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (24, 1, '第1学期', '2025-11-03 00:00:00', '2025-11-06 00:00:00', 7, 0, 1, 0, 0, NULL, NULL, '2025-11-03 09:51:36', NULL, '2025-11-03 11:44:44'); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (25, 1, '第2学期', '2025-11-10 00:00:00', '2025-11-13 00:00:00', 7, 0, 1, 0, 0, NULL, NULL, '2025-11-03 09:51:44', NULL, '2025-11-03 11:44:37'); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (27, 2, '2025', NULL, NULL, NULL, 1, 0, 0, 0, NULL, NULL, '2025-11-06 10:18:32', NULL, NULL); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (28, 2, '第一学期', '2025-11-01 00:00:00', '2025-11-30 00:00:00', 27, 0, 1, 0, 0, NULL, NULL, '2025-11-13 14:55:12', NULL, '2025-11-13 14:55:35'); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (29, 2, '第二学期', '2025-12-01 00:00:00', '2025-12-31 00:00:00', 27, 1, 1, 0, 0, NULL, NULL, '2025-11-13 14:55:31', NULL, '2025-11-13 15:16:03'); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (30, 2, '2026学年', NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, '2025-11-13 14:55:49', NULL, NULL); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (31, 2, '第一学期', '2026-01-01 00:00:00', '2026-01-31 00:00:00', 30, 0, 1, 0, 0, NULL, NULL, '2025-11-13 14:56:14', NULL, NULL); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (32, 17, '2025学年', NULL, NULL, NULL, 1, 0, 0, 0, NULL, NULL, '2025-11-20 11:11:24', NULL, NULL); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (33, 17, '第一学期', '2025-09-01 00:00:00', '2025-12-31 00:00:00', 32, 0, 1, 0, 0, NULL, NULL, '2025-11-20 11:12:07', NULL, NULL); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (34, 17, '2026学年', NULL, NULL, NULL, 0, 0, 0, 0, NULL, NULL, '2025-11-27 16:03:39', NULL, NULL); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (35, 17, '第一学期', '2025-11-01 00:00:00', '2025-11-30 00:00:00', 34, 1, 1, 0, 0, NULL, NULL, '2025-11-27 16:03:58', NULL, '2026-01-19 15:25:27'); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (36, 21, '2025-2026学年', NULL, NULL, NULL, 1, 0, 0, 0, NULL, NULL, '2025-11-27 18:04:40', NULL, NULL); INSERT INTO `base_academic` (`id`, `school_id`, `name`, `start_date`, `end_date`, `pid`, `is_current`, `is_semester`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (37, 21, '第一学期', '2025-09-01 00:00:00', '2025-12-31 00:00:00', 36, 1, 1, 0, 0, NULL, NULL, '2025-11-27 18:05:19', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_app -- ---------------------------- DROP TABLE IF EXISTS `base_app`; CREATE TABLE `base_app` ( `app_id` bigint NOT NULL AUTO_INCREMENT, `app_icon_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '应用图标', `app_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '应用名称', `app_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '应用介绍', `is_use` int DEFAULT '1' COMMENT '是否启用', `is_required` int DEFAULT NULL COMMENT '是否必选,0-非必选 1-必选', `is_del` int DEFAULT '0', `remark` varchar(255) DEFAULT NULL, `app_path` varchar(255) DEFAULT NULL COMMENT '与sys_menu中path字段关联', `create_by` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`app_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统应用'; -- ---------------------------- -- Records of base_app -- ---------------------------- BEGIN; INSERT INTO `base_app` (`app_id`, `app_icon_path`, `app_name`, `app_desc`, `is_use`, `is_required`, `is_del`, `remark`, `app_path`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, '/statics/2025/11/07/ScreenShot_2025-11-07_190116_904 拷贝_20251107190455A009.png', '用户系统', '管理教师、学生信息,权限分配与账号安全', 1, 1, 0, '1', '/userSys', NULL, NULL, 'admin', '2025-12-16 17:55:19'); INSERT INTO `base_app` (`app_id`, `app_icon_path`, `app_name`, `app_desc`, `is_use`, `is_required`, `is_del`, `remark`, `app_path`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, '/statics/2025/11/07/ScreenShot_2025-11-07_190220_618 拷贝_20251107190507A010.png', '思政教学', '教学设计、课堂管理、教学评估一体化平台', 1, 0, 0, '2', '/teachingSys', NULL, NULL, 'admin', '2025-11-26 17:07:17'); INSERT INTO `base_app` (`app_id`, `app_icon_path`, `app_name`, `app_desc`, `is_use`, `is_required`, `is_del`, `remark`, `app_path`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, '/statics/2025/11/07/ScreenShot_2025-11-07_185849_320 拷贝_20251107190050A008.png', '教学资源库', '海量教学资料、案例、课件,满足多样化教学需求', 1, NULL, 0, '3', '/resourceSys', NULL, NULL, 'admin', '2025-11-07 19:00:52'); INSERT INTO `base_app` (`app_id`, `app_icon_path`, `app_name`, `app_desc`, `is_use`, `is_required`, `is_del`, `remark`, `app_path`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, '/statics/2025/12/04/考试系统_20251204180111A002.png', '考试系统', '题库管理、考试安排、智能评分、成绩分析的综合测评系统', 1, NULL, 0, '4', '/examSys', NULL, NULL, 'admin', '2025-12-04 18:01:14'); INSERT INTO `base_app` (`app_id`, `app_icon_path`, `app_name`, `app_desc`, `is_use`, `is_required`, `is_del`, `remark`, `app_path`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, '/statics/2025/12/04/信息系统_20251204180125A003.png', '信息系统', '系统消息、通知公告、校园邮箱等及时推送', 1, NULL, 0, '5', '/infoSys', NULL, NULL, 'admin', '2025-12-04 18:01:26'); INSERT INTO `base_app` (`app_id`, `app_icon_path`, `app_name`, `app_desc`, `is_use`, `is_required`, `is_del`, `remark`, `app_path`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, '/statics/2025/11/07/ScreenShot_2025-11-07_191017_634 拷贝_20251107191123A012.png', 'AI助教', '智能答疑、个性化学习路径规划与学情分析', 1, NULL, 0, '6', '/aiSys', NULL, NULL, 'admin', '2025-11-27 18:33:19'); INSERT INTO `base_app` (`app_id`, `app_icon_path`, `app_name`, `app_desc`, `is_use`, `is_required`, `is_del`, `remark`, `app_path`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, '/statics/2025/11/21/ScreenShot_2025-11-21_162451_410_20251121162956A003.png', '教学分析', '多维度数据分析,助力教学改进与决策支持', 0, NULL, 0, '7', '/teachAnalysisSys', NULL, NULL, 'admin', '2025-12-16 17:57:11'); INSERT INTO `base_app` (`app_id`, `app_icon_path`, `app_name`, `app_desc`, `is_use`, `is_required`, `is_del`, `remark`, `app_path`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, '/statics/2025/11/07/ScreenShot_2025-11-07_190526_115 拷贝_20251107190959A011.png', '系统设置', '系统全局参数配置、安全设置及日志管理功能', 1, 1, 0, '8', '/settingSys', NULL, NULL, 'admin', '2025-12-16 17:55:08'); COMMIT; -- ---------------------------- -- Table structure for base_backup -- ---------------------------- DROP TABLE IF EXISTS `base_backup`; CREATE TABLE `base_backup` ( `id` bigint NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL COMMENT '名字', `path` varchar(500) DEFAULT NULL COMMENT '文件路径', `size` bigint DEFAULT NULL COMMENT '文件大小', `status` smallint DEFAULT NULL COMMENT '备份状态:1-成功;0-失败', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统备份表'; -- ---------------------------- -- Records of base_backup -- ---------------------------- BEGIN; INSERT INTO `base_backup` (`id`, `name`, `path`, `size`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (40, 'backup_20251203_174447', 'd:\\study\\backup\\backup_20251203_174447.sql', 7131294, 1, '1', '2025-12-03 17:44:47', NULL, NULL); INSERT INTO `base_backup` (`id`, `name`, `path`, `size`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (41, 'backup_20251203_174612', 'd:\\study\\backup\\backup_20251203_174612.sql', 7133296, 1, '1', '2025-12-03 17:46:12', NULL, NULL); INSERT INTO `base_backup` (`id`, `name`, `path`, `size`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (42, 'backup_20251203_181101', '/www/study/backup/backup_20251203_181101.sql', 7140854, 1, '1', '2025-12-03 18:11:02', NULL, NULL); INSERT INTO `base_backup` (`id`, `name`, `path`, `size`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (44, 'backup_20251204_093852', '/www/study/backup/backup_20251204_093852.sql', 7460663, 1, '1', '2025-12-04 09:38:53', NULL, NULL); INSERT INTO `base_backup` (`id`, `name`, `path`, `size`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (45, 'backup_20251204_172944', '/www/study/backup/backup_20251204_172944.sql', 7598284, 1, '123', '2025-12-04 17:29:44', NULL, NULL); INSERT INTO `base_backup` (`id`, `name`, `path`, `size`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (46, 'backup_20251215_111919', '/www/study/backup/backup_20251215_111919.sql', 9579373, 1, '1', '2025-12-15 11:19:20', NULL, NULL); INSERT INTO `base_backup` (`id`, `name`, `path`, `size`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (47, 'backup_20251215_113124', '/www/study/backup/backup_20251215_113124.sql', 9581891, 1, '1', '2025-12-15 11:31:25', NULL, NULL); INSERT INTO `base_backup` (`id`, `name`, `path`, `size`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (48, 'backup_20251215_113211', '/www/study/backup/backup_20251215_113211.sql', 9582115, 1, '1', '2025-12-15 11:32:11', NULL, NULL); INSERT INTO `base_backup` (`id`, `name`, `path`, `size`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (49, 'backup_20251215_143042', '/www/study/backup/backup_20251215_143042.sql', 9597958, 1, '1', '2025-12-15 14:30:42', NULL, NULL); INSERT INTO `base_backup` (`id`, `name`, `path`, `size`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (50, 'backup_20260110_235912', '/www/study/backup/backup_20260110_235912.sql', 5303441, 1, '1', '2026-01-10 23:59:13', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_basic_info -- ---------------------------- DROP TABLE IF EXISTS `base_basic_info`; CREATE TABLE `base_basic_info` ( `setting_id` bigint NOT NULL COMMENT '主键', `system_name` varchar(20) DEFAULT NULL COMMENT '系统名称', `sys_logo_path` varchar(500) DEFAULT NULL COMMENT '系统logo', `portal_url` varchar(255) DEFAULT NULL COMMENT '教学门户访问地址', `admin_url` varchar(255) DEFAULT NULL COMMENT '管理后台访问地址', `seo_key_words` varchar(255) DEFAULT NULL COMMENT '系统SEO搜索关键词', `welcome_message` varchar(255) DEFAULT NULL COMMENT '系统欢迎词', `welcome_hint` varchar(255) DEFAULT NULL COMMENT '系统欢迎词提示语', `copyright` varchar(255) DEFAULT NULL COMMENT '系统版权信息', `gray_flag` smallint DEFAULT NULL COMMENT '一建置灰,0-不置灰;1-置灰', `vx_qr_code_display` smallint DEFAULT NULL COMMENT '微信公众号二维码是否展示:0-不显示,1-显示', `vx_qr_code_img_path` varchar(255) DEFAULT NULL COMMENT '微信公众号二堆码图片地址', `ai_robots_display` smallint DEFAULT NULL COMMENT 'AI机器人是否显示:0-不显示,1-显示', `ai_robots_icon_path` varchar(255) DEFAULT NULL COMMENT 'AI帮助机器人图标地址', `app_qr_code_display` smallint DEFAULT NULL COMMENT '思政APP二维码是否展示:0-不显示,1-显示', `app_qr_code_img_path` varchar(255) DEFAULT NULL COMMENT '思政APP二维码图片地址', `contact_phone` varchar(20) DEFAULT NULL COMMENT '联系电话', `contact_email` varchar(50) DEFAULT NULL COMMENT '联系邮箱', `contact_address` varchar(50) DEFAULT NULL COMMENT '联系地址', `sys_start_date` datetime DEFAULT NULL COMMENT '系统开始运行日期-系统设置首页用', `sys_version` varchar(255) DEFAULT NULL COMMENT '系统版本', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`setting_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统基本信息表'; -- ---------------------------- -- Records of base_basic_info -- ---------------------------- BEGIN; INSERT INTO `base_basic_info` (`setting_id`, `system_name`, `sys_logo_path`, `portal_url`, `admin_url`, `seo_key_words`, `welcome_message`, `welcome_hint`, `copyright`, `gray_flag`, `vx_qr_code_display`, `vx_qr_code_img_path`, `ai_robots_display`, `ai_robots_icon_path`, `app_qr_code_display`, `app_qr_code_img_path`, `contact_phone`, `contact_email`, `contact_address`, `sys_start_date`, `sys_version`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, '中硕思政教学管理平台', '/statics/2026/01/16/3_20260116155504A002.png', 'http://www.portal.com', 'http://www.admin.com', 'seo程序瑕疵v现场v', '欢迎使用中硕思政教学平台11', '一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222', '

©1999-2025北京创新乐知网络技术有限公司

', 0, 1, '/statics/2025/12/11/u3473_20251211140033A003.png', 1, '/statics/2025/12/11/3479_20251211140038A004.gif', 1, '/statics/2025/12/23/1_1069066339_171_85_3_1072128497_3d968cce5fe3247ee314241c7836c4b2_20251223165421A001.png', '13588888889', 'aaa@aab.com', '12', '2025-12-14 00:00:00', '1.0.0', NULL, NULL, NULL, '2026-01-16 15:55:08'); COMMIT; -- ---------------------------- -- Table structure for base_chapter -- ---------------------------- DROP TABLE IF EXISTS `base_chapter`; CREATE TABLE `base_chapter` ( `id` bigint NOT NULL AUTO_INCREMENT, `school_id` bigint DEFAULT NULL COMMENT '学校ID', `course_id` bigint DEFAULT NULL COMMENT '课程ID', `ref_id` bigint DEFAULT NULL COMMENT '引用ID', `title` varchar(512) DEFAULT NULL, `pid` bigint DEFAULT NULL COMMENT '父ID', `level` int DEFAULT NULL COMMENT '级别', `is_open` int DEFAULT '1' COMMENT '是否开放1.是, 2.否', `ref_count` int DEFAULT '0' COMMENT '引用次数', `is_del` int DEFAULT '0', `is_pass` int DEFAULT '0' COMMENT '是否上课0-未上1-已上', `state` int DEFAULT NULL, `remark` varchar(255) DEFAULT NULL, `create_by` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=260 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='章节信息'; -- ---------------------------- -- Records of base_chapter -- ---------------------------- BEGIN; INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 1, 7, NULL, '2222', 0, 1, 1, 0, 0, 0, 1, NULL, '2', '2025-10-27 17:12:23', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 1, 7, NULL, '444', 0, 1, 1, 0, 0, 0, 1, NULL, '2', '2025-10-27 17:14:00', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, 7, NULL, '123aaaa', 1, 2, 1, 0, 0, 0, NULL, NULL, '2', '2025-10-27 17:24:28', NULL, '2025-10-27 17:47:37'); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 1, 7, NULL, '41111555aaa', 2, 2, 1, 0, 0, 0, NULL, NULL, '2', '2025-10-27 17:35:20', NULL, '2025-10-28 16:45:35'); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, 7, NULL, '4222', 2, 2, 1, 0, 0, 0, NULL, NULL, '2', '2025-10-27 17:35:28', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 1, 7, NULL, '45555aaa', 0, 1, 1, 0, 0, 0, 1, NULL, '2', '2025-10-27 17:42:50', NULL, '2025-10-27 17:48:03'); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (9, 1, 7, NULL, '51111', 8, 2, 1, 0, 0, 0, NULL, NULL, '2', '2025-10-27 17:46:49', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (10, 1, 7, NULL, '53333', 8, 2, 1, 0, 0, 0, NULL, NULL, '2', '2025-10-27 17:46:56', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (31, 1, 7, NULL, '绪论', 0, 1, 1, 0, 0, 0, 1, NULL, '2', '2025-10-28 12:06:55', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (32, 1, 7, NULL, '人生观', 0, 1, 1, 0, 0, 0, 1, NULL, '2', '2025-10-28 12:06:55', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (33, 1, 7, NULL, '学习要求', 31, 2, 1, 0, 0, 0, 1, NULL, '2', '2025-10-28 12:06:55', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (34, 1, 7, NULL, '人生与人生观', 32, 2, 1, 0, 0, 0, 1, NULL, '2', '2025-10-28 12:06:55', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (35, 1, 7, NULL, '6666', 0, 1, 1, 0, 0, 0, NULL, NULL, '2', '2025-10-28 16:10:02', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (37, 1, 7, NULL, '6111', 35, 2, 1, 0, 0, 0, NULL, NULL, '2', '2025-10-28 16:19:41', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (38, 1, 7, NULL, '65555', 35, 2, 1, 0, 0, 0, NULL, NULL, '2', '2025-10-28 16:19:49', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (41, 1, 7, NULL, '7hhhhhh', 0, 1, 1, 0, 0, 0, NULL, NULL, '2', '2025-10-28 16:46:29', NULL, '2025-10-28 16:47:32'); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (42, 1, 3, NULL, '领悟人生真谛 把握人生方向', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-10-28 18:28:11', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (43, 1, 3, NULL, '追求远大理想 坚定崇高信念', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-10-28 18:28:14', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (44, 1, 3, NULL, '人生的青春之问', 42, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-10-28 18:28:20', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (45, 1, 3, NULL, '正确的人生观', 42, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-10-28 18:28:26', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (46, 1, 3, NULL, '创造有意义的人生', 43, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-10-28 18:28:33', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (47, 1, 3, NULL, '理想信念的内涵及重要性', 43, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-10-28 18:28:36', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (48, 1, 3, NULL, '坚定信仰信念信心', 42, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-01 23:43:48', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (50, 1, 4, NULL, '我的区长父亲', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-11 18:24:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (79, 1, 20, 42, '领悟人生真谛 把握人生方向', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (80, 1, 20, 43, '追求远大理想 坚定崇高信念', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (81, 1, 20, 44, '人生的青春之问', 79, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (82, 1, 20, 45, '正确的人生观', 79, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (83, 1, 20, 46, '创造有意义的人生', 80, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (84, 1, 20, 47, '理想信念的内涵及重要性', 80, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (85, 1, 20, 48, '坚定信仰信念信心', 79, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (86, 1, 21, 50, '我的区长父亲', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-14 17:50:29', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (88, 1, 5, NULL, '中国精神001', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-21 15:04:16', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (89, 1, 5, NULL, '中国精神002', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-21 15:04:22', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (90, 1, 5, NULL, '中国精神003', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-21 15:04:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (91, 1, 5, NULL, '中国精神001-aaaa', 88, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-21 15:04:38', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (92, 1, 5, NULL, '中国精神001-bbb', 88, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-21 15:04:48', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (93, 1, 5, NULL, '中国精神001-ccc', 88, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-21 15:04:57', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (94, 1, 5, NULL, '中国精神002-ddd', 89, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-21 15:05:11', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (95, 1, 5, NULL, '中国精神002-eee', 89, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-21 15:05:19', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (96, 1, 5, NULL, '中国精神002-fff', 89, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-21 15:05:32', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (97, 1, 5, NULL, '中国精神002-ggg', 89, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-21 15:05:46', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (98, 1, 5, NULL, '中国精神003-hhh', 90, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-21 15:05:57', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (99, 1, 24, 88, '中国精神001', 0, 1, 1, 0, 0, 1, 1, NULL, '1', '2025-11-21 15:21:58', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (100, 1, 24, 89, '中国精神002', 0, 1, 1, 0, 0, 1, 1, NULL, '1', '2025-11-21 15:21:58', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (101, 1, 24, 90, '中国精神003', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-21 15:21:58', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (102, 1, 24, 91, '中国精神001-aaaa', 99, 2, 1, 0, 0, 1, 1, NULL, '1', '2025-11-21 15:21:58', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (103, 1, 24, 92, '中国精神001-bbb', 99, 2, 1, 0, 0, 1, 1, NULL, '1', '2025-11-21 15:21:58', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (104, 1, 24, 93, '中国精神001-ccc', 99, 2, 1, 0, 0, 1, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (105, 1, 24, 94, '中国精神002-ddd', 100, 2, 1, 0, 0, 1, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (106, 1, 24, 95, '中国精神002-eee', 100, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (107, 1, 24, 96, '中国精神002-fff', 100, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, 1, 24, 97, '中国精神002-ggg', 100, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, 1, 24, 98, '中国精神003-hhh', 101, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (111, 1, 24, NULL, '1111', 101, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-26 16:35:26', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (112, 1, 26, NULL, '我是一级目录', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 16:44:37', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (113, 1, 26, NULL, '我是一级目录2', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 16:44:49', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (114, 1, 5, NULL, '绪论打算', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:03:18', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (115, 1, 5, NULL, '人生观', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:03:18', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (116, 1, 5, NULL, '人生与人生观', 115, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:03:18', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (117, 1, 5, NULL, '我的章节1', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:04:18', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (118, 1, 5, NULL, '我的章节2', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:04:18', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (119, 1, 5, NULL, '学习要求', 117, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:04:19', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (120, 1, 5, NULL, '人生与人生观', 118, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:04:19', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (121, 1, 9, NULL, '我的章节1', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:36:56', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (122, 1, 9, NULL, '我的章节2', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:36:56', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (123, 1, 9, NULL, '学习要求', 121, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:36:56', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (124, 1, 9, NULL, '人生与人生观', 122, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:36:56', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (125, 1, 9, NULL, '我的章节1', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:37:58', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (126, 1, 9, NULL, '我的章节2', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:37:58', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (127, 1, 9, NULL, '学习要求', 125, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:37:58', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (128, 1, 9, NULL, '人生与人生观', 126, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:37:58', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (129, 1, 5, NULL, '我的章节5', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:41:46', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (130, 1, 5, NULL, '我的章节6', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:41:46', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (131, 1, 5, NULL, '学习要求', 129, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:41:46', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (132, 1, 5, NULL, '人生与人生观', 130, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-11-26 22:41:46', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (133, 17, 27, NULL, '我的章节5', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-11-27 00:16:55', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (134, 17, 27, NULL, '我的章节6', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-11-27 00:16:55', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (135, 17, 27, NULL, '学习要求', 133, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-11-27 00:16:55', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (136, 17, 27, NULL, '人生与人生观', 134, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-11-27 00:16:55', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (137, 17, 30, NULL, '我的课程1', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-11-27 15:54:51', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (138, 1, 32, NULL, '一级目录', 0, 1, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-28 11:35:22', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (139, 1, 32, NULL, '二级目录', 138, 2, 1, 0, 0, 0, NULL, NULL, '1', '2025-11-28 11:35:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (140, 1, 35, 138, '一级目录', 0, 1, 1, 0, 0, 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (141, 1, 35, 139, '二级目录', 140, 2, 1, 0, 0, 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (142, 1, 36, 138, '一级目录', 0, 1, 1, 0, 0, 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (143, 1, 36, 139, '二级目录', 142, 2, 1, 0, 0, 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (144, 1, 37, 138, '一级目录', 0, 1, 1, 0, 0, 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (145, 1, 37, 139, '二级目录', 144, 2, 1, 0, 0, 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (146, 17, 38, NULL, '收到反馈及时的反馈', 0, 1, 1, 0, 0, 1, 1, NULL, '123', '2025-12-01 17:13:48', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (147, 17, 38, NULL, '章节2', 0, 1, 1, 0, 0, 1, 1, NULL, '123', '2025-12-01 17:14:01', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (148, 17, 38, NULL, '章节3', 0, 1, 1, 0, 0, 1, 1, NULL, '123', '2025-12-01 17:14:07', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (149, 17, 38, NULL, '章节4', 0, 1, 1, 0, 0, 1, 1, NULL, '123', '2025-12-01 17:14:14', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (150, 17, 28, NULL, '章节11111111', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-05 11:05:56', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (151, 1, 10, NULL, '1', 0, 1, 1, 0, 0, 0, NULL, NULL, '1', '2025-12-06 15:21:36', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (152, 1, 39, 88, '中国精神001', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (153, 1, 39, 89, '中国精神002', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (154, 1, 39, 90, '中国精神003', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (155, 1, 39, 114, '绪论打算', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (156, 1, 39, 115, '人生观', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (157, 1, 39, 117, '我的章节1', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (158, 1, 39, 118, '我的章节2', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (159, 1, 39, 130, '我的章节6', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (160, 1, 39, 129, '我的章节5', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (161, 1, 39, 91, '中国精神001-aaaa', 152, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (162, 1, 39, 92, '中国精神001-bbb', 152, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (163, 1, 39, 93, '中国精神001-ccc', 152, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (164, 1, 39, 94, '中国精神002-ddd', 153, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (165, 1, 39, 95, '中国精神002-eee', 153, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (166, 1, 39, 96, '中国精神002-fff', 153, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (167, 1, 39, 97, '中国精神002-ggg', 153, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (168, 1, 39, 98, '中国精神003-hhh', 154, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (169, 1, 39, 116, '人生与人生观', 156, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (170, 1, 39, 119, '学习要求', 157, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (171, 1, 39, 120, '人生与人生观', 158, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (172, 1, 39, 131, '学习要求', 160, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (173, 1, 39, 132, '人生与人生观', 159, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (174, 1, 40, 88, '中国精神001', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (175, 1, 40, 89, '中国精神002', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (176, 1, 40, 90, '中国精神003', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (177, 1, 40, 114, '绪论打算', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (178, 1, 40, 115, '人生观', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (179, 1, 40, 117, '我的章节1', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (180, 1, 40, 118, '我的章节2', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (181, 1, 40, 130, '我的章节6', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (182, 1, 40, 129, '我的章节5', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (183, 1, 40, 91, '中国精神001-aaaa', 174, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (184, 1, 40, 92, '中国精神001-bbb', 174, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (185, 1, 40, 93, '中国精神001-ccc', 174, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (186, 1, 40, 94, '中国精神002-ddd', 175, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (187, 1, 40, 95, '中国精神002-eee', 175, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (188, 1, 40, 96, '中国精神002-fff', 175, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (189, 1, 40, 97, '中国精神002-ggg', 175, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (190, 1, 40, 98, '中国精神003-hhh', 176, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (191, 1, 40, 116, '人生与人生观', 178, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (192, 1, 40, 119, '学习要求', 179, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (193, 1, 40, 120, '人生与人生观', 180, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (194, 1, 40, 131, '学习要求', 182, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (195, 1, 40, 132, '人生与人生观', 181, 2, 1, 0, 0, 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (196, 1, 41, NULL, '11111', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:17:12', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (197, 1, 41, NULL, '2222', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:17:24', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (198, 1, 41, NULL, 'aaaaaa', 196, 2, 1, 0, 0, 0, NULL, NULL, '110', '2025-12-10 15:17:36', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (199, 1, 41, NULL, 'bbbb', 196, 2, 1, 0, 0, 0, NULL, NULL, '110', '2025-12-10 15:17:42', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (200, 1, 42, 88, '中国精神001', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:42', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (201, 1, 42, 89, '中国精神002', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:42', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (202, 1, 42, 90, '中国精神003', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:42', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (203, 1, 42, 114, '绪论打算', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (204, 1, 42, 115, '人生观', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (205, 1, 42, 117, '我的章节1', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (206, 1, 42, 118, '我的章节2', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (207, 1, 42, 130, '我的章节6', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (208, 1, 42, 129, '我的章节5', 0, 1, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (209, 1, 42, 91, '中国精神001-aaaa', 200, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (210, 1, 42, 92, '中国精神001-bbb', 200, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (211, 1, 42, 93, '中国精神001-ccc', 200, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (212, 1, 42, 94, '中国精神002-ddd', 201, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (213, 1, 42, 95, '中国精神002-eee', 201, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (214, 1, 42, 96, '中国精神002-fff', 201, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (215, 1, 42, 97, '中国精神002-ggg', 201, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (216, 1, 42, 98, '中国精神003-hhh', 202, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (217, 1, 42, 116, '人生与人生观', 204, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (218, 1, 42, 119, '学习要求', 205, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (219, 1, 42, 120, '人生与人生观', 206, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:43', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (220, 1, 42, 131, '学习要求', 208, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (221, 1, 42, 132, '人生与人生观', 207, 2, 1, 0, 0, 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (222, 1, 43, 42, '领悟人生真谛 把握人生方向', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-10 18:11:48', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (223, 1, 43, 43, '追求远大理想 坚定崇高信念', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-10 18:11:48', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (224, 1, 43, 44, '人生的青春之问', 222, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-10 18:11:48', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (225, 1, 43, 45, '正确的人生观', 222, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-10 18:11:48', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (226, 1, 43, 48, '坚定信仰信念信心', 222, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-10 18:11:48', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (227, 1, 43, 46, '创造有意义的人生', 223, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-10 18:11:48', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (228, 1, 43, 47, '理想信念的内涵及重要性', 223, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-10 18:11:48', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (229, 1, 44, 88, '中国精神001', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (230, 1, 44, 89, '中国精神002', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (231, 1, 44, 90, '中国精神003', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (232, 1, 44, 114, '绪论打算', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (233, 1, 44, 115, '人生观', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (234, 1, 44, 117, '我的章节1', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (235, 1, 44, 118, '我的章节2', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (236, 1, 44, 130, '我的章节6', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (237, 1, 44, 129, '我的章节5', 0, 1, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (238, 1, 44, 91, '中国精神001-aaaa', 229, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (239, 1, 44, 92, '中国精神001-bbb', 229, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (240, 1, 44, 93, '中国精神001-ccc', 229, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (241, 1, 44, 94, '中国精神002-ddd', 230, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (242, 1, 44, 95, '中国精神002-eee', 230, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (243, 1, 44, 96, '中国精神002-fff', 230, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (244, 1, 44, 97, '中国精神002-ggg', 230, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (245, 1, 44, 98, '中国精神003-hhh', 231, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:50', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (246, 1, 44, 116, '人生与人生观', 233, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (247, 1, 44, 119, '学习要求', 234, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (248, 1, 44, 120, '人生与人生观', 235, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (249, 1, 44, 131, '学习要求', 237, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (250, 1, 44, 132, '人生与人生观', 236, 2, 1, 0, 0, 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (251, 1, 8, NULL, '1111', 0, 1, 1, 0, 0, 0, 1, NULL, '2', '2026-01-11 21:38:39', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (252, 2, 45, NULL, '2233', 0, 1, 1, 0, 0, 0, 1, NULL, '100', '2026-01-11 21:44:10', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (253, 1, 46, 42, '领悟人生真谛 把握人生方向', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (254, 1, 46, 43, '追求远大理想 坚定崇高信念', 0, 1, 1, 0, 0, 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (255, 1, 46, 44, '人生的青春之问', 253, 2, 1, 0, 0, 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (256, 1, 46, 45, '正确的人生观', 253, 2, 1, 0, 0, 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (257, 1, 46, 48, '坚定信仰信念信心', 253, 2, 1, 0, 0, 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (258, 1, 46, 46, '创造有意义的人生', 254, 2, 1, 0, 0, 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter` (`id`, `school_id`, `course_id`, `ref_id`, `title`, `pid`, `level`, `is_open`, `ref_count`, `is_del`, `is_pass`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (259, 1, 46, 47, '理想信念的内涵及重要性', 254, 2, 1, 0, 0, 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_chapter_content -- ---------------------------- DROP TABLE IF EXISTS `base_chapter_content`; CREATE TABLE `base_chapter_content` ( `id` bigint NOT NULL AUTO_INCREMENT, `school_id` bigint DEFAULT NULL COMMENT '学校ID', `chapter_id` bigint DEFAULT NULL COMMENT '章节ID', `chapter_type` int DEFAULT '1' COMMENT '内容类型', `content` mediumtext COMMENT '内容', `is_del` int NOT NULL DEFAULT '0' COMMENT '删除标识', `state` int DEFAULT NULL COMMENT '状态', `remark` varchar(255) DEFAULT NULL COMMENT '备注', `create_by` varchar(255) DEFAULT NULL COMMENT '创建人', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(255) DEFAULT NULL COMMENT '更新人', `update_time` datetime DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1294 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='章节内容信息'; -- ---------------------------- -- Records of base_chapter_content -- ---------------------------- BEGIN; INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, 1, 44, 101, '


', 0, NULL, NULL, NULL, '2025-11-11 16:10:06', NULL, '2025-12-06 11:57:54'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, 1, 44, 102, '


', 0, NULL, NULL, NULL, '2025-11-11 16:10:06', NULL, '2025-12-06 11:57:54'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (110, 1, 44, 2, '{\"id\":16,\"name\":\"Python编程入门导论.mp4\",\"url\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"size\":6611125,\"duration\":5.066667,\"source\":\"自主创作\"}', 0, NULL, NULL, NULL, '2025-11-11 16:10:07', NULL, '2025-12-06 11:57:54'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (111, 1, 44, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:33:39\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 16:04:19\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":48,\"name\":\"测试课件222222\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":19353929,\\\"metadata\\\":null,\\\"uid\\\":1764142415469,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":3,\"typeId\":1,\"stage\":3,\"tagIds\":\"1\",\"premiumTypes\":\"2\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"typeName\":\"课件\",\"referenceCount\":4,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":19353929,\"size\":19353929,\"url\":\"\",\"type\":\"测试课件222222\",\"sysAndCurrentSchool\":false,\"currentSchoolId\":null},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"fileName\":\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\",\"size\":888915,\"url\":\"/statics/2025/11/26/%E5%AF%92%E9%97%A8%E8%AF%A1%E5%B0%8612%E5%B1%80+(%E4%BC%8F%E7%BE%B2)_20251126153231A007.pdf\",\"type\":\"pdf\"}]', 0, NULL, NULL, NULL, '2025-11-11 16:10:07', NULL, '2025-12-06 11:57:54'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (112, 1, 44, 7, '', 0, NULL, NULL, NULL, '2025-11-11 16:10:07', NULL, '2025-12-06 11:57:54'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (113, 1, 44, 9, '', 0, NULL, NULL, NULL, '2025-11-11 16:10:07', NULL, '2025-12-06 11:57:54'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (114, 1, 44, 103, '', 0, NULL, NULL, NULL, '2025-11-11 16:10:07', NULL, '2025-12-06 11:57:54'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (115, 1, 44, 10, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:52:29\",\"updateBy\":\"100\",\"updateTime\":\"2025-11-27 16:38:19\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":58,\"name\":\"测试图书1111111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\",\"description\":\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764143538858,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":2,\"typeId\":10,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"fileName\":\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\",\"size\":888915,\"url\":\"/statics/2025/11/26/%E5%AF%92%E9%97%A8%E8%AF%A1%E5%B0%8612%E5%B1%80+(%E4%BC%8F%E7%BE%B2)_20251126155218A027.pdf\",\"type\":\"pdf\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 15:32:34\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-05 14:30:29\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":67,\"name\":\"新疆图书\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\",\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"description\":\"

\",\"viewCount\":8,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":1941907,\"fileName\":\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\",\"size\":1941907,\"url\":\"/statics/2025/11/28/%E6%8B%9B%E6%A0%87%E6%96%87%E4%BB%B6-%E7%94%98%E8%82%83%E5%8C%BB%E5%AD%A6%E9%99%A2%E6%80%9D%E6%94%BF%E8%AF%BE%E5%AE%9E%E8%B7%B5%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F%E8%B4%AD%E7%BD%AE%E9%A1%B9%E7%9B%AE%EF%BC%88%E5%AE%9A%E7%A8%BF%EF%BC%89%20_20251128153228A016.pdf\",\"type\":\"pdf\"}]', 0, NULL, NULL, NULL, '2025-11-11 16:10:07', NULL, '2025-12-06 11:57:55'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (116, 1, 44, 5, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":29,\"name\":\"爱国主义教育讲座.mp3\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/07/伍佰 & China Blue - 突然的自我_20251107152354A002.mp3\",\"coverImgPath\":\"\",\"description\":\"爱国主义教育讲座.mp3\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":5,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/07/%E4%BC%8D%E4%BD%B0%20&%20China%20Blue%20-%20%E7%AA%81%E7%84%B6%E7%9A%84%E8%87%AA%E6%88%91_20251107152354A002.mp3\",\"type\":\"mp3\"}]', 0, NULL, NULL, NULL, '2025-11-11 16:10:07', NULL, '2025-12-06 11:57:55'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (117, 1, 44, 8, '', 0, NULL, NULL, NULL, '2025-11-11 16:10:07', NULL, '2025-12-06 11:57:55'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (118, 1, 44, 104, '[10328,10327,10318,10322,10326,10325,10324]', 0, NULL, NULL, NULL, '2025-11-11 16:10:07', NULL, '2025-12-06 11:57:55'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (119, 1, 45, 101, '


', 0, NULL, NULL, NULL, '2025-11-11 16:20:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (120, 1, 45, 102, '


', 0, NULL, NULL, NULL, '2025-11-11 16:20:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (121, 1, 45, 2, '', 0, NULL, NULL, NULL, '2025-11-11 16:20:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (122, 1, 45, 1, '', 0, NULL, NULL, NULL, '2025-11-11 16:20:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (123, 1, 45, 7, '', 0, NULL, NULL, NULL, '2025-11-11 16:20:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (124, 1, 45, 9, '', 0, NULL, NULL, NULL, '2025-11-11 16:20:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (125, 1, 45, 103, '', 0, NULL, NULL, NULL, '2025-11-11 16:20:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (126, 1, 45, 10, '', 0, NULL, NULL, NULL, '2025-11-11 16:20:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (127, 1, 45, 5, '', 0, NULL, NULL, NULL, '2025-11-11 16:20:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (128, 1, 45, 8, '', 0, NULL, NULL, NULL, '2025-11-11 16:20:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (129, 1, 45, 104, '[10328,10327,10326,10325,10324]', 0, NULL, NULL, NULL, '2025-11-11 16:20:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (172, 1, 42, 101, '

111

', 0, NULL, NULL, NULL, '2025-11-12 14:41:44', NULL, '2025-11-12 17:22:39'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (173, 1, 42, 102, '

2222

', 0, NULL, NULL, NULL, '2025-11-12 14:41:44', NULL, '2025-11-12 17:22:39'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (174, 1, 42, 2, '{\"id\":16,\"name\":\"Python编程入门导论.mp4\",\"url\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"size\":6611125,\"duration\":5.066667,\"source\":\"2\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 17:37:01\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"Python编程入门导论.mp4\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":2,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"视频\",\"referenceCount\":2}', 0, NULL, NULL, NULL, '2025-11-12 14:41:45', NULL, '2025-11-12 17:22:39'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (175, 1, 42, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-07 17:55:23\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:05:43\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":24,\"name\":\"test\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

111

\",\"viewCount\":6,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":32065481,\\\"metadata\\\":null,\\\"uid\\\":1762851694309,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":32065481,\"size\":32065481,\"url\":\"\",\"type\":\"test\"},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:00:45\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":20,\"name\":\"Python编程入门导论.pdf\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"Python编程入门导论.pdf\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/05/%E4%B8%AD%E7%A1%95%E6%80%9D%E6%94%BF-%E9%9C%80%E6%B1%82%E8%AF%B4%E6%98%8E%E4%B9%A6_20251105173357A012.docx\",\"type\":\"pdf\"}]', 0, NULL, NULL, NULL, '2025-11-12 14:41:45', NULL, '2025-11-12 17:22:39'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (176, 1, 42, 7, '{\"id\":25,\"name\":\"毛泽东故居全景展馆\",\"url\":\"/statics/panorama/2025/11/06/%E5%85%A8%E6%99%AF%E6%B5%8B%E8%AF%95_20251106103135A003/index.html\",\"size\":6611125,\"type\":\"毛泽东故居全景展馆\",\"source\":\"1\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:02:10\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/panorama/2025/11/06/全景测试_20251106103135A003/index.html\",\"coverImgPath\":\"\",\"description\":\"毛泽东故居全景展馆\",\"viewCount\":2,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":7,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"全景\",\"referenceCount\":1}', 0, NULL, NULL, NULL, '2025-11-12 14:41:45', NULL, '2025-11-12 17:22:39'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (177, 1, 42, 9, '{\"id\":27,\"name\":\"毛泽东故居全景展馆\",\"url\":\"/statics/panorama/2025/11/06/%E5%85%A8%E6%99%AF%E6%B5%8B%E8%AF%95_20251106103135A003/index.html\",\"size\":6611125,\"type\":\"毛泽东故居全景展馆\",\"source\":\"1\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/panorama/2025/11/06/全景测试_20251106103135A003/index.html\",\"coverImgPath\":\"\",\"description\":\"毛泽东故居全景展馆\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":9,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"虚拟仿真展馆\",\"referenceCount\":1}', 0, NULL, NULL, NULL, '2025-11-12 14:41:45', NULL, '2025-11-12 17:22:39'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (178, 1, 42, 103, '[{\"url\":\"https://tailwind.nodejs.cn/docs/flex-direction\",\"title\":\"flex-direction\",\"description\":\"flex-direction\",\"addTime\":\"2025/11/12 14:41:11\"}]', 0, NULL, NULL, NULL, '2025-11-12 14:41:45', NULL, '2025-11-12 17:22:39'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (179, 1, 42, 10, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 17:45:57\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":31,\"name\":\"人工智能前沿技术讲座.pptx\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"人工智能前沿技术讲座.pptx\",\"viewCount\":99,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/05/%E4%B8%AD%E7%A1%95%E6%80%9D%E6%94%BF-%E9%9C%80%E6%B1%82%E8%AF%B4%E6%98%8E%E4%B9%A6_20251105173357A012.docx\",\"type\":\"pptx\"}]', 0, NULL, NULL, NULL, '2025-11-12 14:41:45', NULL, '2025-11-12 17:22:39'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (180, 1, 42, 5, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":29,\"name\":\"爱国主义教育讲座.mp3\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/07/伍佰 & China Blue - 突然的自我_20251107152354A002.mp3\",\"coverImgPath\":\"\",\"description\":\"爱国主义教育讲座.mp3\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":5,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":2,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/07/%E4%BC%8D%E4%BD%B0%20&%20China%20Blue%20-%20%E7%AA%81%E7%84%B6%E7%9A%84%E8%87%AA%E6%88%91_20251107152354A002.mp3\",\"type\":\"mp3\"}]', 0, NULL, NULL, NULL, '2025-11-12 14:41:45', NULL, '2025-11-12 17:22:40'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (181, 1, 42, 8, '{\"id\":33,\"name\":\"古代建筑模型\",\"url\":\"/statics/3dModel/2025/11/06/d2z-ok_20251106155613A001.fbx\",\"size\":6611125,\"type\":\"古代建筑模型\",\"source\":\"系统内置\"}', 0, NULL, NULL, NULL, '2025-11-12 14:41:45', NULL, '2025-11-12 17:22:41'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (182, 1, 42, 104, '[10327,10330,10328,10321,10318,10329,10322,10319,10326,10325,10324,10323,10320]', 0, NULL, NULL, NULL, '2025-11-12 14:41:45', NULL, '2025-11-12 17:22:41'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (315, 1, 79, 101, '

111

', 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (316, 1, 79, 102, '

2222

', 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (317, 1, 79, 2, '{\"id\":16,\"name\":\"Python编程入门导论.mp4\",\"url\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"size\":6611125,\"duration\":5.066667,\"source\":\"2\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 17:37:01\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"Python编程入门导论.mp4\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":2,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"视频\",\"referenceCount\":2}', 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (318, 1, 79, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-07 17:55:23\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:05:43\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":24,\"name\":\"test\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

111

\",\"viewCount\":6,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":32065481,\\\"metadata\\\":null,\\\"uid\\\":1762851694309,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":32065481,\"size\":32065481,\"url\":\"\",\"type\":\"test\"},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:00:45\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":20,\"name\":\"Python编程入门导论.pdf\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"Python编程入门导论.pdf\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/05/%E4%B8%AD%E7%A1%95%E6%80%9D%E6%94%BF-%E9%9C%80%E6%B1%82%E8%AF%B4%E6%98%8E%E4%B9%A6_20251105173357A012.docx\",\"type\":\"pdf\"}]', 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (319, 1, 79, 7, '{\"id\":25,\"name\":\"毛泽东故居全景展馆\",\"url\":\"/statics/panorama/2025/11/06/%E5%85%A8%E6%99%AF%E6%B5%8B%E8%AF%95_20251106103135A003/index.html\",\"size\":6611125,\"type\":\"毛泽东故居全景展馆\",\"source\":\"1\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:02:10\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/panorama/2025/11/06/全景测试_20251106103135A003/index.html\",\"coverImgPath\":\"\",\"description\":\"毛泽东故居全景展馆\",\"viewCount\":2,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":7,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"全景\",\"referenceCount\":1}', 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (320, 1, 79, 9, '{\"id\":27,\"name\":\"毛泽东故居全景展馆\",\"url\":\"/statics/panorama/2025/11/06/%E5%85%A8%E6%99%AF%E6%B5%8B%E8%AF%95_20251106103135A003/index.html\",\"size\":6611125,\"type\":\"毛泽东故居全景展馆\",\"source\":\"1\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/panorama/2025/11/06/全景测试_20251106103135A003/index.html\",\"coverImgPath\":\"\",\"description\":\"毛泽东故居全景展馆\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":9,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"虚拟仿真展馆\",\"referenceCount\":1}', 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (321, 1, 79, 103, '[{\"url\":\"https://tailwind.nodejs.cn/docs/flex-direction\",\"title\":\"flex-direction\",\"description\":\"flex-direction\",\"addTime\":\"2025/11/12 14:41:11\"}]', 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (322, 1, 79, 10, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 17:45:57\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":31,\"name\":\"人工智能前沿技术讲座.pptx\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"人工智能前沿技术讲座.pptx\",\"viewCount\":99,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/05/%E4%B8%AD%E7%A1%95%E6%80%9D%E6%94%BF-%E9%9C%80%E6%B1%82%E8%AF%B4%E6%98%8E%E4%B9%A6_20251105173357A012.docx\",\"type\":\"pptx\"}]', 0, 1, NULL, '1', '2025-11-14 16:46:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (323, 1, 79, 5, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":29,\"name\":\"爱国主义教育讲座.mp3\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/07/伍佰 & China Blue - 突然的自我_20251107152354A002.mp3\",\"coverImgPath\":\"\",\"description\":\"爱国主义教育讲座.mp3\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":5,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":2,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/07/%E4%BC%8D%E4%BD%B0%20&%20China%20Blue%20-%20%E7%AA%81%E7%84%B6%E7%9A%84%E8%87%AA%E6%88%91_20251107152354A002.mp3\",\"type\":\"mp3\"}]', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (324, 1, 79, 8, '{\"id\":33,\"name\":\"古代建筑模型\",\"url\":\"/statics/3dModel/2025/11/06/d2z-ok_20251106155613A001.fbx\",\"size\":6611125,\"type\":\"古代建筑模型\",\"source\":\"系统内置\"}', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (325, 1, 79, 104, '[10327,10330,10328,10321,10318,10329,10322,10319,10326,10325,10324,10323,10320]', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (326, 1, 81, 101, '


', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (327, 1, 81, 102, '', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (328, 1, 81, 2, '{\"id\":16,\"name\":\"Python编程入门导论.mp4\",\"url\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"size\":6611125,\"duration\":5.066667,\"source\":\"自主创作\"}', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (329, 1, 81, 1, '', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (330, 1, 81, 7, '', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (331, 1, 81, 9, '', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (332, 1, 81, 103, '', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (333, 1, 81, 10, '', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (334, 1, 81, 5, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":29,\"name\":\"爱国主义教育讲座.mp3\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/07/伍佰 & China Blue - 突然的自我_20251107152354A002.mp3\",\"coverImgPath\":\"\",\"description\":\"爱国主义教育讲座.mp3\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":5,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/07/%E4%BC%8D%E4%BD%B0%20&%20China%20Blue%20-%20%E7%AA%81%E7%84%B6%E7%9A%84%E8%87%AA%E6%88%91_20251107152354A002.mp3\",\"type\":\"mp3\"}]', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (335, 1, 81, 8, '', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (336, 1, 81, 104, '[10328,10327,10318,10322,10326,10325,10324]', 0, 1, NULL, '1', '2025-11-14 16:46:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (337, 1, 82, 101, '


', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (338, 1, 82, 102, '


', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (339, 1, 82, 2, '', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (340, 1, 82, 1, '', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (341, 1, 82, 7, '', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (342, 1, 82, 9, '', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (343, 1, 82, 103, '', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (344, 1, 82, 10, '', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (345, 1, 82, 5, '', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (346, 1, 82, 8, '', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (347, 1, 82, 104, '[10328,10327,10326,10325,10324]', 0, 1, NULL, '1', '2025-11-14 16:46:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (348, 1, 88, 101, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, NULL, NULL, NULL, '2025-11-21 15:06:28', NULL, '2025-11-27 11:33:42'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (349, 1, 88, 102, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, NULL, NULL, NULL, '2025-11-21 15:06:28', NULL, '2025-11-27 11:33:42'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (350, 1, 88, 2, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:28', NULL, '2025-11-27 11:33:42'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (351, 1, 88, 1, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:28', NULL, '2025-11-27 11:33:42'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (352, 1, 88, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:28', NULL, '2025-11-27 11:33:42'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (353, 1, 88, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:28', NULL, '2025-11-27 11:33:42'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (354, 1, 88, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:29', NULL, '2025-11-27 11:33:42'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (355, 1, 88, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:29', NULL, '2025-11-27 11:33:42'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (356, 1, 88, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:29', NULL, '2025-11-27 11:33:43'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (357, 1, 88, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:29', NULL, '2025-11-27 11:33:43'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (358, 1, 88, 104, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:29', NULL, '2025-11-27 11:33:43'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (359, 1, 91, 101, '

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神fsfsdfsdf

', 0, NULL, NULL, NULL, '2025-11-21 15:06:55', NULL, '2025-11-27 11:31:56'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (360, 1, 91, 102, '

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

', 0, NULL, NULL, NULL, '2025-11-21 15:06:55', NULL, '2025-11-27 11:31:56'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (361, 1, 91, 2, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:55', NULL, '2025-11-27 11:31:56'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (362, 1, 91, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"size\":888915,\"url\":\"\",\"type\":\"测试课件111111\",\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null}]', 0, NULL, NULL, NULL, '2025-11-21 15:06:55', NULL, '2025-11-27 11:31:56'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (363, 1, 91, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:55', NULL, '2025-11-27 11:31:56'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (364, 1, 91, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:55', NULL, '2025-11-27 11:31:56'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (365, 1, 91, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:55', NULL, '2025-11-27 11:31:56'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (366, 1, 91, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:56', NULL, '2025-11-27 11:31:57'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (367, 1, 91, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:56', NULL, '2025-11-27 11:31:57'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (368, 1, 91, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:06:56', NULL, '2025-11-27 11:31:57'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (369, 1, 91, 104, '[10351,10350,10347]', 0, NULL, NULL, NULL, '2025-11-21 15:06:56', NULL, '2025-11-27 11:31:57'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (370, 1, 92, 101, '

中国精神00010-bbbbbbbsffsddsfdf

', 0, NULL, NULL, NULL, '2025-11-21 15:07:17', NULL, '2025-11-27 11:31:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (371, 1, 92, 102, '

中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb

', 0, NULL, NULL, NULL, '2025-11-21 15:07:17', NULL, '2025-11-27 11:31:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (372, 1, 92, 2, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:17', NULL, '2025-11-27 11:31:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (373, 1, 92, 1, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:17', NULL, '2025-11-27 11:31:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (374, 1, 92, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:17', NULL, '2025-11-27 11:31:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (375, 1, 92, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:17', NULL, '2025-11-27 11:31:26'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (376, 1, 92, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:17', NULL, '2025-11-27 11:31:26'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (377, 1, 92, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:17', NULL, '2025-11-27 11:31:26'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (378, 1, 92, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:18', NULL, '2025-11-27 11:31:26'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (379, 1, 92, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:18', NULL, '2025-11-27 11:31:26'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (380, 1, 92, 104, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:18', NULL, '2025-11-27 11:31:26'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (381, 1, 93, 101, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, NULL, NULL, NULL, '2025-11-21 15:07:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (382, 1, 93, 102, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, NULL, NULL, NULL, '2025-11-21 15:07:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (383, 1, 93, 2, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (384, 1, 93, 1, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (385, 1, 93, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (386, 1, 93, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (387, 1, 93, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (388, 1, 93, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (389, 1, 93, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (390, 1, 93, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (391, 1, 93, 104, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (392, 1, 94, 101, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, NULL, NULL, NULL, '2025-11-21 15:07:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (393, 1, 94, 102, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, NULL, NULL, NULL, '2025-11-21 15:07:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (394, 1, 94, 2, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (395, 1, 94, 1, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (396, 1, 94, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (397, 1, 94, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (398, 1, 94, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (399, 1, 94, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (400, 1, 94, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (401, 1, 94, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (402, 1, 94, 104, '', 0, NULL, NULL, NULL, '2025-11-21 15:07:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (403, 1, 95, 101, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, NULL, NULL, NULL, '2025-11-21 15:08:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (404, 1, 95, 102, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, NULL, NULL, NULL, '2025-11-21 15:08:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (405, 1, 95, 2, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (406, 1, 95, 1, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (407, 1, 95, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (408, 1, 95, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (409, 1, 95, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (410, 1, 95, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (411, 1, 95, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (412, 1, 95, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (413, 1, 95, 104, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (414, 1, 96, 101, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, NULL, NULL, NULL, '2025-11-21 15:08:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (415, 1, 96, 102, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, NULL, NULL, NULL, '2025-11-21 15:08:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (416, 1, 96, 2, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (417, 1, 96, 1, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (418, 1, 96, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (419, 1, 96, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (420, 1, 96, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (421, 1, 96, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (422, 1, 96, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (423, 1, 96, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (424, 1, 96, 104, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (425, 1, 97, 101, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, NULL, NULL, NULL, '2025-11-21 15:08:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (426, 1, 97, 102, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, NULL, NULL, NULL, '2025-11-21 15:08:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (427, 1, 97, 2, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (428, 1, 97, 1, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (429, 1, 97, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (430, 1, 97, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (431, 1, 97, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (432, 1, 97, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (433, 1, 97, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (434, 1, 97, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (435, 1, 97, 104, '', 0, NULL, NULL, NULL, '2025-11-21 15:08:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (436, 1, 98, 101, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, NULL, NULL, NULL, '2025-11-21 15:09:06', NULL, '2025-11-26 22:19:43'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (437, 1, 98, 102, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, NULL, NULL, NULL, '2025-11-21 15:09:06', NULL, '2025-11-26 22:19:43'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (438, 1, 98, 2, '{\"id\":45,\"name\":\"测试视频资源1\",\"url\":\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\",\"size\":14794783,\"duration\":74.35,\"source\":\"系统内置\"}', 0, NULL, NULL, NULL, '2025-11-21 15:09:06', NULL, '2025-11-26 22:19:43'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (439, 1, 98, 1, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:06', NULL, '2025-11-26 22:19:43'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (440, 1, 98, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:06', NULL, '2025-11-26 22:19:43'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (441, 1, 98, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:06', NULL, '2025-11-26 22:19:43'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (442, 1, 98, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:06', NULL, '2025-11-26 22:19:44'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (443, 1, 98, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:06', NULL, '2025-11-26 22:19:44'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (444, 1, 98, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:06', NULL, '2025-11-26 22:19:44'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (445, 1, 98, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:07', NULL, '2025-11-26 22:19:44'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (446, 1, 98, 104, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:07', NULL, '2025-11-26 22:19:44'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (447, 1, 89, 101, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, NULL, NULL, NULL, '2025-11-21 15:09:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (448, 1, 89, 102, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, NULL, NULL, NULL, '2025-11-21 15:09:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (449, 1, 89, 2, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (450, 1, 89, 1, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (451, 1, 89, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (452, 1, 89, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (453, 1, 89, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (454, 1, 89, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (455, 1, 89, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (456, 1, 89, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (457, 1, 89, 104, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (458, 1, 90, 101, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, NULL, NULL, NULL, '2025-11-21 15:09:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (459, 1, 90, 102, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, NULL, NULL, NULL, '2025-11-21 15:09:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (460, 1, 90, 2, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (461, 1, 90, 1, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (462, 1, 90, 7, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (463, 1, 90, 9, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (464, 1, 90, 103, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (465, 1, 90, 10, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (466, 1, 90, 5, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:39', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (467, 1, 90, 8, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:39', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (468, 1, 90, 104, '', 0, NULL, NULL, NULL, '2025-11-21 15:09:39', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (469, 1, 107, 101, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (470, 1, 107, 102, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (471, 1, 107, 2, '', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (472, 1, 107, 1, '', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (473, 1, 107, 7, '', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (474, 1, 107, 9, '', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (475, 1, 107, 103, '', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (476, 1, 107, 10, '', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (477, 1, 107, 5, '', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (478, 1, 107, 8, '', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (479, 1, 107, 104, '', 0, 1, NULL, '1', '2025-11-21 15:21:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (480, 1, 108, 101, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (481, 1, 108, 102, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (482, 1, 108, 2, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (483, 1, 108, 1, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (484, 1, 108, 7, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (485, 1, 108, 9, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (486, 1, 108, 103, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (487, 1, 108, 10, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (488, 1, 108, 5, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (489, 1, 108, 8, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (490, 1, 108, 104, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (491, 1, 109, 101, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (492, 1, 109, 102, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (493, 1, 109, 2, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (494, 1, 109, 1, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (495, 1, 109, 7, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (496, 1, 109, 9, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (497, 1, 109, 103, '', 0, 1, NULL, '1', '2025-11-21 15:22:00', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (498, 1, 109, 10, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (499, 1, 109, 5, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (500, 1, 109, 8, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (501, 1, 109, 104, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (502, 1, 99, 101, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (503, 1, 99, 102, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (504, 1, 99, 2, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (505, 1, 99, 1, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (506, 1, 99, 7, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (507, 1, 99, 9, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (508, 1, 99, 103, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (509, 1, 99, 10, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (510, 1, 99, 5, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (511, 1, 99, 8, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (512, 1, 99, 104, '', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (513, 1, 100, 101, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (514, 1, 100, 102, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, 1, NULL, '1', '2025-11-21 15:22:01', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (515, 1, 100, 2, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (516, 1, 100, 1, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (517, 1, 100, 7, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (518, 1, 100, 9, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (519, 1, 100, 103, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (520, 1, 100, 10, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (521, 1, 100, 5, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (522, 1, 100, 8, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (523, 1, 100, 104, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (524, 1, 101, 101, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (525, 1, 101, 102, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (526, 1, 101, 2, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (527, 1, 101, 1, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (528, 1, 101, 7, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (529, 1, 101, 9, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (530, 1, 101, 103, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (531, 1, 101, 10, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (532, 1, 101, 5, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (533, 1, 101, 8, '', 0, 1, NULL, '1', '2025-11-21 15:22:02', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (534, 1, 101, 104, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (535, 1, 102, 101, '

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (536, 1, 102, 102, '

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (537, 1, 102, 2, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (538, 1, 102, 1, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (539, 1, 102, 7, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (540, 1, 102, 9, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (541, 1, 102, 103, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (542, 1, 102, 10, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (543, 1, 102, 5, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (544, 1, 102, 8, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (545, 1, 102, 104, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (546, 1, 103, 101, '

中国精神00010-bbbbbbb

', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (547, 1, 103, 102, '

中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb

', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (548, 1, 103, 2, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (549, 1, 103, 1, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (550, 1, 103, 7, '', 0, 1, NULL, '1', '2025-11-21 15:22:03', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (551, 1, 103, 9, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (552, 1, 103, 103, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (553, 1, 103, 10, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (554, 1, 103, 5, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (555, 1, 103, 8, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (556, 1, 103, 104, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (557, 1, 104, 101, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (558, 1, 104, 102, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (559, 1, 104, 2, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (560, 1, 104, 1, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (561, 1, 104, 7, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (562, 1, 104, 9, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (563, 1, 104, 103, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (564, 1, 104, 10, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (565, 1, 104, 5, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (566, 1, 104, 8, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (567, 1, 104, 104, '', 0, 1, NULL, '1', '2025-11-21 15:22:04', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (568, 1, 105, 101, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (569, 1, 105, 102, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (570, 1, 105, 2, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (571, 1, 105, 1, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (572, 1, 105, 7, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (573, 1, 105, 9, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (574, 1, 105, 103, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (575, 1, 105, 10, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (576, 1, 105, 5, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (577, 1, 105, 8, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (578, 1, 105, 104, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (579, 1, 106, 101, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (580, 1, 106, 102, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (581, 1, 106, 2, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (582, 1, 106, 1, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (583, 1, 106, 7, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (584, 1, 106, 9, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (585, 1, 106, 103, '', 0, 1, NULL, '1', '2025-11-21 15:22:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (586, 1, 106, 10, '', 0, 1, NULL, '1', '2025-11-21 15:22:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (587, 1, 106, 5, '', 0, 1, NULL, '1', '2025-11-21 15:22:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (588, 1, 106, 8, '', 0, 1, NULL, '1', '2025-11-21 15:22:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (589, 1, 106, 104, '', 0, 1, NULL, '1', '2025-11-21 15:22:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (590, 1, 112, 101, '

1115555

', 0, NULL, NULL, NULL, '2025-11-26 16:45:00', NULL, '2025-11-27 09:51:17'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (591, 1, 112, 102, '

2222444

', 0, NULL, NULL, NULL, '2025-11-26 16:45:00', NULL, '2025-11-27 09:51:17'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (592, 1, 112, 2, '', 0, NULL, NULL, NULL, '2025-11-26 16:45:00', NULL, '2025-11-27 09:51:17'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (593, 1, 112, 1, '', 0, NULL, NULL, NULL, '2025-11-26 16:45:00', NULL, '2025-11-27 09:51:17'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (594, 1, 112, 7, '', 0, NULL, NULL, NULL, '2025-11-26 16:45:00', NULL, '2025-11-27 09:51:17'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (595, 1, 112, 9, '', 0, NULL, NULL, NULL, '2025-11-26 16:45:00', NULL, '2025-11-27 09:51:17'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (596, 1, 112, 103, '[{\"url\":\"http://localhost/#/chapter-list?id=26\",\"title\":\"大学思政教学平台\",\"description\":\"大学思政教学平台\",\"addTime\":\"2025/11/27 09:19:16\"},{\"url\":\"http://81.68.239.182/#/chapter-list?id=26\",\"title\":\"大学思政教学平台\",\"description\":\"大学思政教学平台\",\"addTime\":\"2025/11/27 09:22:40\"}]', 0, NULL, NULL, NULL, '2025-11-26 16:45:01', NULL, '2025-11-27 09:51:17'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (597, 1, 112, 10, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:52:29\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":58,\"name\":\"测试图书1111111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\",\"description\":\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764143538858,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":2,\"typeId\":10,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"typeName\":\"图书\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"size\":888915,\"url\":\"/statics/2025/11/26/%E5%AF%92%E9%97%A8%E8%AF%A1%E5%B0%8612%E5%B1%80+(%E4%BC%8F%E7%BE%B2)_20251126155218A027.pdf\",\"type\":\"测试图书1111111111\"}]', 0, NULL, NULL, NULL, '2025-11-26 16:45:01', NULL, '2025-11-27 09:51:18'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (598, 1, 112, 5, '', 0, NULL, NULL, NULL, '2025-11-26 16:45:01', NULL, '2025-11-27 09:51:18'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (599, 1, 112, 8, '', 0, NULL, NULL, NULL, '2025-11-26 16:45:01', NULL, '2025-11-27 09:51:18'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (600, 1, 112, 104, '', 0, NULL, NULL, NULL, '2025-11-26 16:45:01', NULL, '2025-11-27 09:51:18'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (601, 17, 135, 101, '

阿萨大厦萨达萨达

', 0, NULL, NULL, NULL, '2025-11-27 00:17:12', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (602, 17, 135, 102, '', 0, NULL, NULL, NULL, '2025-11-27 00:17:12', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (603, 17, 135, 2, '', 0, NULL, NULL, NULL, '2025-11-27 00:17:12', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (604, 17, 135, 1, '', 0, NULL, NULL, NULL, '2025-11-27 00:17:12', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (605, 17, 135, 7, '', 0, NULL, NULL, NULL, '2025-11-27 00:17:12', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (606, 17, 135, 9, '', 0, NULL, NULL, NULL, '2025-11-27 00:17:12', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (607, 17, 135, 103, '', 0, NULL, NULL, NULL, '2025-11-27 00:17:12', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (608, 17, 135, 10, '', 0, NULL, NULL, NULL, '2025-11-27 00:17:12', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (609, 17, 135, 5, '', 0, NULL, NULL, NULL, '2025-11-27 00:17:12', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (610, 17, 135, 8, '', 0, NULL, NULL, NULL, '2025-11-27 00:17:13', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (611, 17, 135, 104, '', 0, NULL, NULL, NULL, '2025-11-27 00:17:13', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (612, 1, 138, 101, '

11

', 0, NULL, NULL, NULL, '2025-11-28 11:36:56', NULL, '2025-11-28 17:34:09'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (613, 1, 138, 102, '', 0, NULL, NULL, NULL, '2025-11-28 11:36:56', NULL, '2025-11-28 17:34:09'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (614, 1, 138, 2, '', 0, NULL, NULL, NULL, '2025-11-28 11:36:56', NULL, '2025-11-28 17:34:10'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (615, 1, 138, 1, '', 0, NULL, NULL, NULL, '2025-11-28 11:36:56', NULL, '2025-11-28 17:34:10'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (616, 1, 138, 7, '{\"id\":60,\"name\":\"测试展馆111111111111\",\"url\":\"/statics/panorama/2025/11/26/%E6%80%9D%E6%83%B3%E9%81%93%E5%BE%B7%E4%B8%8E%E6%B3%95%E6%B2%BB-%E7%AC%AC%E4%B8%80%E7%AB%A0-%E7%AC%AC%E4%B8%80%E8%8A%82_20251126175211A034/index.html\",\"size\":19729476,\"type\":\"html\",\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 17:52:16\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126175139A033.png\",\"description\":\"

测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/26/思想道德与法治-第一章-第一节_20251126175211A034/index.html\\\",\\\"originalName\\\":\\\"思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1764150732088,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":2,\"typeId\":7,\"stage\":3,\"tagIds\":\"2\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"全景\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, NULL, NULL, NULL, '2025-11-28 11:36:56', NULL, '2025-11-28 17:34:10'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (617, 1, 138, 9, '{\"id\":64,\"name\":\"第一章 红色展厅介绍\",\"url\":\"/statics/virtualSimulation/2025/11/28/%E7%AC%AC%E4%B8%80%E7%AB%A0%E7%BA%A2%E8%89%B2%E8%99%9A%E6%8B%9F%E5%B1%95%E9%A6%86_20251128114310A008/index.html\",\"size\":146428201,\"type\":\"第一章 红色展厅介绍\",\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 11:45:32\",\"updateBy\":\"133\",\"updateTime\":\"2025-11-28 12:00:53\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\",\"description\":\"

哈哈哈哈

\",\"viewCount\":3,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\",\\\"originalName\\\":\\\"第一章红色虚拟展馆.zip\\\",\\\"size\\\":146428201,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1764301392734,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":1,\"typeId\":9,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"虚拟仿真展馆\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, NULL, NULL, NULL, '2025-11-28 11:36:56', NULL, '2025-11-28 17:34:10'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (618, 1, 138, 103, '', 0, NULL, NULL, NULL, '2025-11-28 11:36:56', NULL, '2025-11-28 17:34:10'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (619, 1, 138, 10, '', 0, NULL, NULL, NULL, '2025-11-28 11:36:56', NULL, '2025-11-28 17:34:11'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (620, 1, 138, 5, '', 0, NULL, NULL, NULL, '2025-11-28 11:36:56', NULL, '2025-11-28 17:34:11'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (621, 1, 138, 8, '', 0, NULL, NULL, NULL, '2025-11-28 11:36:56', NULL, '2025-11-28 17:34:12'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (622, 1, 138, 104, '', 0, NULL, NULL, NULL, '2025-11-28 11:36:57', NULL, '2025-11-28 17:34:12'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (623, 1, 139, 101, '

你好,我是教学引导222

\"tx_20251128150302A012.png\"



', 0, NULL, NULL, NULL, '2025-11-28 15:12:05', NULL, '2025-12-04 17:13:24'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (624, 1, 139, 102, '


', 0, NULL, NULL, NULL, '2025-11-28 15:12:05', NULL, '2025-12-04 17:13:24'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (625, 1, 139, 2, '{\"id\":45,\"name\":\"测试视频资源1\",\"url\":\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\",\"size\":14794783,\"duration\":74.35,\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-12 15:29:05\",\"updateBy\":\"14\",\"updateTime\":\"2025-12-01 11:39:24\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\",\"description\":\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":14794783,\\\"metadata\\\":null,\\\"uid\\\":1764142124231,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":2,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1,2\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"视频\",\"referenceCount\":5,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, NULL, NULL, NULL, '2025-11-28 15:12:05', NULL, '2025-12-04 17:13:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (626, 1, 139, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"size\":888915,\"url\":\"/statics/2025/11/26/%E5%AF%92%E9%97%A8%E8%AF%A1%E5%B0%8612%E5%B1%80+(%E4%BC%8F%E7%BE%B2)_20251126153231A007.pdf\",\"type\":\"测试课件111111\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:33:39\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 16:04:19\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":48,\"name\":\"测试课件222222\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":19353929,\\\"metadata\\\":null,\\\"uid\\\":1764142415469,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":3,\"typeId\":1,\"stage\":3,\"tagIds\":\"1\",\"premiumTypes\":\"2\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":19353929,\"size\":19353929,\"url\":\"/statics/2025/11/26/%E8%AF%BE%E9%97%B4%E6%AF%8F%E6%97%A5%E4%B8%80%E8%80%83%E9%A2%98%E8%8B%B1%E8%AF%AD%E7%BB%83%E4%B9%A0_20251126153335A008.pdf\",\"type\":\"测试课件222222\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 11:59:09\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":65,\"name\":\"test\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/logo1_20251128115157A009.png\",\"description\":\"

资源简洁展厅士大夫士大夫

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":222985657,\\\"metadata\\\":null,\\\"uid\\\":1764302347115,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":3,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":222985657,\"size\":222985657,\"url\":\"/statics/2025/11/28/Node.js%E7%A1%AC%E5%AE%9E%E6%88%98%20115%E4%B8%AA%E6%A0%B8%E5%BF%83%E6%8A%80%E5%B7%A7_20251128115906A010.pdf\",\"type\":\"test\"},{\"name\":\"企业技术需求征集表_20251128150458A014.docx\",\"url\":\"/statics/2025/11/28/企业技术需求征集表_20251128150458A014.docx\",\"size\":21814,\"type\":\"DOCX\",\"source\":\"本地上传\"},{\"name\":\"第5章 遵守道德规范 锤炼道德品格_20251204171228A001.pptx\",\"url\":\"/statics/2025/12/04/第5章 遵守道德规范 锤炼道德品格_20251204171228A001.pptx\",\"size\":9064650,\"type\":\"PPTX\",\"source\":\"本地上传\"}]', 0, NULL, NULL, NULL, '2025-11-28 15:12:05', NULL, '2025-12-04 17:13:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (627, 1, 139, 7, '', 0, NULL, NULL, NULL, '2025-11-28 15:12:05', NULL, '2025-12-04 17:13:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (628, 1, 139, 9, '', 0, NULL, NULL, NULL, '2025-11-28 15:12:05', NULL, '2025-12-04 17:13:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (629, 1, 139, 103, '[{\"url\":\"http://news.youth.cn/sz/202511/t20251128_16374961.htm\",\"title\":\"中共大事件\",\"description\":\"中共大事件\",\"addTime\":\"2025/11/28 15:05:58\"}]', 0, NULL, NULL, NULL, '2025-11-28 15:12:05', NULL, '2025-12-04 17:13:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (630, 1, 139, 10, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 15:32:34\",\"updateBy\":\"14\",\"updateTime\":\"2025-12-01 11:43:22\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":67,\"name\":\"新疆图书\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"description\":\"

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":1941907,\"size\":1941907,\"url\":\"/statics/2025/11/28/%E6%8B%9B%E6%A0%87%E6%96%87%E4%BB%B6-%E7%94%98%E8%82%83%E5%8C%BB%E5%AD%A6%E9%99%A2%E6%80%9D%E6%94%BF%E8%AF%BE%E5%AE%9E%E8%B7%B5%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F%E8%B4%AD%E7%BD%AE%E9%A1%B9%E7%9B%AE%EF%BC%88%E5%AE%9A%E7%A8%BF%EF%BC%89%20_20251128153228A016.pdf\",\"type\":\"新疆图书\"}]', 0, NULL, NULL, NULL, '2025-11-28 15:12:06', NULL, '2025-12-04 17:13:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (631, 1, 139, 5, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:43:22\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":53,\"name\":\"测试音频111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154246A018.png\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Empire of Angels_20251126154315A019.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Empire of Angels_20251126154315A019.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":5065709,\\\"metadata\\\":null,\\\"uid\\\":1764142995804,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":5,\"stage\":2,\"tagIds\":\"3\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":5065709,\"size\":5065709,\"url\":\"/statics/2025/11/26/Empire%20of%20Angels_20251126154315A019.mp3\",\"type\":\"测试音频111111\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:44:26\",\"updateBy\":\"14\",\"updateTime\":\"2025-12-01 11:38:57\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":54,\"name\":\"测试音频22222222\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154418A021.png\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频2222222222222

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Immortal_20251126154358A020.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":3965640,\\\"metadata\\\":null,\\\"uid\\\":1764143038890,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":2,\"typeId\":5,\"stage\":2,\"tagIds\":\"4,5\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":3965640,\"size\":3965640,\"url\":\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\",\"type\":\"测试音频22222222\"}]', 0, NULL, NULL, NULL, '2025-11-28 15:12:06', NULL, '2025-12-04 17:13:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (632, 1, 139, 8, '{\"id\":57,\"name\":\"测试模型1111111\",\"url\":\"/statics/%E8%99%9A%E6%8B%9F%E4%BB%BF%E7%9C%9F3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\",\"size\":598034,\"type\":\"测试模型1111111\",\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:49:38\",\"updateBy\":\"100\",\"updateTime\":\"2025-11-27 16:38:02\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/图片12_20251126154907A024.png\",\"description\":\"

测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111

\",\"viewCount\":2,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251126154935A025.obj\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1764143375410,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":8,\"stage\":2,\"tagIds\":\"2\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"3D模型\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, NULL, NULL, NULL, '2025-11-28 15:12:06', NULL, '2025-12-04 17:13:25'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (633, 1, 139, 104, '[10321,10350,10347,10322,10343,10342,10323,10352,10349]', 0, NULL, NULL, NULL, '2025-11-28 15:12:06', NULL, '2025-12-04 17:13:26'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (634, 1, 140, 101, '

11

', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (635, 1, 140, 102, '', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (636, 1, 140, 2, '', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (637, 1, 140, 1, '', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (638, 1, 140, 7, '', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (639, 1, 140, 9, '{\"id\":64,\"name\":\"第一章 红色展厅介绍\",\"url\":\"/statics/virtualSimulation/2025/11/28/%E7%AC%AC%E4%B8%80%E7%AB%A0%E7%BA%A2%E8%89%B2%E8%99%9A%E6%8B%9F%E5%B1%95%E9%A6%86_20251128114310A008/index.html\",\"size\":146428201,\"type\":\"第一章 红色展厅介绍\",\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 11:45:32\",\"updateBy\":\"133\",\"updateTime\":\"2025-11-28 12:00:53\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\",\"description\":\"

哈哈哈哈

\",\"viewCount\":3,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\",\\\"originalName\\\":\\\"第一章红色虚拟展馆.zip\\\",\\\"size\\\":146428201,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1764301392734,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":1,\"typeId\":9,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"虚拟仿真展馆\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (640, 1, 140, 103, '', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (641, 1, 140, 10, '', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (642, 1, 140, 5, '', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (643, 1, 140, 8, '', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (644, 1, 140, 104, '', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (645, 1, 141, 101, '

你好,我是教学引导

\"tx_20251128150302A012.png\"\"微信图片_20251119121159_222_64_20251128154645A019.jpg\"

', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (646, 1, 141, 102, '

你好,我是学习指引

\"bg1_20251128150329A013.jpg\"

', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (647, 1, 141, 2, '{\"id\":45,\"name\":\"测试视频资源1\",\"url\":\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\",\"size\":14794783,\"duration\":74.35,\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-12 15:29:05\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\",\"description\":\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":14794783,\\\"metadata\\\":null,\\\"uid\\\":1764142124231,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":2,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1,2\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"视频\",\"referenceCount\":2,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, 1, NULL, '133', '2025-11-28 16:42:05', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (648, 1, 141, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":2,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"size\":888915,\"url\":\"/statics/2025/11/26/%E5%AF%92%E9%97%A8%E8%AF%A1%E5%B0%8612%E5%B1%80+(%E4%BC%8F%E7%BE%B2)_20251126153231A007.pdf\",\"type\":\"测试课件111111\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:33:39\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":48,\"name\":\"测试课件222222\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":19353929,\\\"metadata\\\":null,\\\"uid\\\":1764142415469,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":3,\"typeId\":1,\"stage\":3,\"tagIds\":\"1\",\"premiumTypes\":\"2\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":2,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":19353929,\"size\":19353929,\"url\":\"/statics/2025/11/26/%E8%AF%BE%E9%97%B4%E6%AF%8F%E6%97%A5%E4%B8%80%E8%80%83%E9%A2%98%E8%8B%B1%E8%AF%AD%E7%BB%83%E4%B9%A0_20251126153335A008.pdf\",\"type\":\"测试课件222222\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 11:59:09\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":65,\"name\":\"test\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/logo1_20251128115157A009.png\",\"description\":\"

资源简洁展厅士大夫士大夫

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":222985657,\\\"metadata\\\":null,\\\"uid\\\":1764302347115,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":222985657,\"size\":222985657,\"url\":\"/statics/2025/11/28/Node.js%E7%A1%AC%E5%AE%9E%E6%88%98%20115%E4%B8%AA%E6%A0%B8%E5%BF%83%E6%8A%80%E5%B7%A7_20251128115906A010.pdf\",\"type\":\"test\"},{\"name\":\"企业技术需求征集表_20251128150458A014.docx\",\"url\":\"/statics/2025/11/28/企业技术需求征集表_20251128150458A014.docx\",\"size\":21814,\"type\":\"DOCX\",\"source\":\"本地上传\"}]', 0, 1, NULL, '133', '2025-11-28 16:42:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (649, 1, 141, 7, '', 0, 1, NULL, '133', '2025-11-28 16:42:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (650, 1, 141, 9, '', 0, 1, NULL, '133', '2025-11-28 16:42:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (651, 1, 141, 103, '[{\"url\":\"http://news.youth.cn/sz/202511/t20251128_16374961.htm\",\"title\":\"中共大事件\",\"description\":\"中共大事件\",\"addTime\":\"2025/11/28 15:05:58\"}]', 0, 1, NULL, '133', '2025-11-28 16:42:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (652, 1, 141, 10, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 15:32:34\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":67,\"name\":\"新疆图书\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"description\":\"

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":1941907,\"size\":1941907,\"url\":\"/statics/2025/11/28/%E6%8B%9B%E6%A0%87%E6%96%87%E4%BB%B6-%E7%94%98%E8%82%83%E5%8C%BB%E5%AD%A6%E9%99%A2%E6%80%9D%E6%94%BF%E8%AF%BE%E5%AE%9E%E8%B7%B5%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F%E8%B4%AD%E7%BD%AE%E9%A1%B9%E7%9B%AE%EF%BC%88%E5%AE%9A%E7%A8%BF%EF%BC%89%20_20251128153228A016.pdf\",\"type\":\"新疆图书\"}]', 0, 1, NULL, '133', '2025-11-28 16:42:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (653, 1, 141, 5, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:43:22\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":53,\"name\":\"测试音频111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154246A018.png\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Empire of Angels_20251126154315A019.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Empire of Angels_20251126154315A019.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":5065709,\\\"metadata\\\":null,\\\"uid\\\":1764142995804,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":5,\"stage\":2,\"tagIds\":\"3\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":5065709,\"size\":5065709,\"url\":\"/statics/2025/11/26/Empire%20of%20Angels_20251126154315A019.mp3\",\"type\":\"测试音频111111\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:44:26\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":54,\"name\":\"测试音频22222222\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154418A021.png\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频2222222222222

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Immortal_20251126154358A020.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":3965640,\\\"metadata\\\":null,\\\"uid\\\":1764143038890,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":2,\"typeId\":5,\"stage\":2,\"tagIds\":\"4,5\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":3965640,\"size\":3965640,\"url\":\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\",\"type\":\"测试音频22222222\"}]', 0, 1, NULL, '133', '2025-11-28 16:42:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (654, 1, 141, 8, '{\"id\":57,\"name\":\"测试模型1111111\",\"url\":\"/statics/%E8%99%9A%E6%8B%9F%E4%BB%BF%E7%9C%9F3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\",\"size\":598034,\"type\":\"测试模型1111111\",\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:49:38\",\"updateBy\":\"100\",\"updateTime\":\"2025-11-27 16:38:02\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/图片12_20251126154907A024.png\",\"description\":\"

测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111

\",\"viewCount\":2,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251126154935A025.obj\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1764143375410,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":8,\"stage\":2,\"tagIds\":\"2\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"3D模型\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, 1, NULL, '133', '2025-11-28 16:42:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (655, 1, 141, 104, '[10321,10350,10347,10322,10343,10342,10323,10352,10349]', 0, 1, NULL, '133', '2025-11-28 16:42:06', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (656, 1, 142, 101, '

11

', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (657, 1, 142, 102, '', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (658, 1, 142, 2, '', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (659, 1, 142, 1, '', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (660, 1, 142, 7, '', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (661, 1, 142, 9, '{\"id\":64,\"name\":\"第一章 红色展厅介绍\",\"url\":\"/statics/virtualSimulation/2025/11/28/%E7%AC%AC%E4%B8%80%E7%AB%A0%E7%BA%A2%E8%89%B2%E8%99%9A%E6%8B%9F%E5%B1%95%E9%A6%86_20251128114310A008/index.html\",\"size\":146428201,\"type\":\"第一章 红色展厅介绍\",\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 11:45:32\",\"updateBy\":\"133\",\"updateTime\":\"2025-11-28 12:00:53\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\",\"description\":\"

哈哈哈哈

\",\"viewCount\":3,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\",\\\"originalName\\\":\\\"第一章红色虚拟展馆.zip\\\",\\\"size\\\":146428201,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1764301392734,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":1,\"typeId\":9,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"虚拟仿真展馆\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (662, 1, 142, 103, '', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (663, 1, 142, 10, '', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (664, 1, 142, 5, '', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (665, 1, 142, 8, '', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (666, 1, 142, 104, '', 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (667, 1, 143, 101, '

你好,我是教学引导

\"tx_20251128150302A012.png\"\"微信图片_20251119121159_222_64_20251128154645A019.jpg\"

', 0, 1, NULL, '133', '2025-11-28 16:44:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (668, 1, 143, 102, '

你好,我是学习指引

\"bg1_20251128150329A013.jpg\"

', 0, 1, NULL, '133', '2025-11-28 16:44:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (669, 1, 143, 2, '{\"id\":45,\"name\":\"测试视频资源1\",\"url\":\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\",\"size\":14794783,\"duration\":74.35,\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-12 15:29:05\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\",\"description\":\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":14794783,\\\"metadata\\\":null,\\\"uid\\\":1764142124231,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":2,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1,2\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"视频\",\"referenceCount\":2,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, 1, NULL, '133', '2025-11-28 16:44:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (670, 1, 143, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":2,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"size\":888915,\"url\":\"/statics/2025/11/26/%E5%AF%92%E9%97%A8%E8%AF%A1%E5%B0%8612%E5%B1%80+(%E4%BC%8F%E7%BE%B2)_20251126153231A007.pdf\",\"type\":\"测试课件111111\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:33:39\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":48,\"name\":\"测试课件222222\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":19353929,\\\"metadata\\\":null,\\\"uid\\\":1764142415469,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":3,\"typeId\":1,\"stage\":3,\"tagIds\":\"1\",\"premiumTypes\":\"2\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":2,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":19353929,\"size\":19353929,\"url\":\"/statics/2025/11/26/%E8%AF%BE%E9%97%B4%E6%AF%8F%E6%97%A5%E4%B8%80%E8%80%83%E9%A2%98%E8%8B%B1%E8%AF%AD%E7%BB%83%E4%B9%A0_20251126153335A008.pdf\",\"type\":\"测试课件222222\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 11:59:09\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":65,\"name\":\"test\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/logo1_20251128115157A009.png\",\"description\":\"

资源简洁展厅士大夫士大夫

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":222985657,\\\"metadata\\\":null,\\\"uid\\\":1764302347115,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":222985657,\"size\":222985657,\"url\":\"/statics/2025/11/28/Node.js%E7%A1%AC%E5%AE%9E%E6%88%98%20115%E4%B8%AA%E6%A0%B8%E5%BF%83%E6%8A%80%E5%B7%A7_20251128115906A010.pdf\",\"type\":\"test\"},{\"name\":\"企业技术需求征集表_20251128150458A014.docx\",\"url\":\"/statics/2025/11/28/企业技术需求征集表_20251128150458A014.docx\",\"size\":21814,\"type\":\"DOCX\",\"source\":\"本地上传\"}]', 0, 1, NULL, '133', '2025-11-28 16:44:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (671, 1, 143, 7, '', 0, 1, NULL, '133', '2025-11-28 16:44:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (672, 1, 143, 9, '', 0, 1, NULL, '133', '2025-11-28 16:44:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (673, 1, 143, 103, '[{\"url\":\"http://news.youth.cn/sz/202511/t20251128_16374961.htm\",\"title\":\"中共大事件\",\"description\":\"中共大事件\",\"addTime\":\"2025/11/28 15:05:58\"}]', 0, 1, NULL, '133', '2025-11-28 16:44:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (674, 1, 143, 10, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 15:32:34\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":67,\"name\":\"新疆图书\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"description\":\"

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":1941907,\"size\":1941907,\"url\":\"/statics/2025/11/28/%E6%8B%9B%E6%A0%87%E6%96%87%E4%BB%B6-%E7%94%98%E8%82%83%E5%8C%BB%E5%AD%A6%E9%99%A2%E6%80%9D%E6%94%BF%E8%AF%BE%E5%AE%9E%E8%B7%B5%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F%E8%B4%AD%E7%BD%AE%E9%A1%B9%E7%9B%AE%EF%BC%88%E5%AE%9A%E7%A8%BF%EF%BC%89%20_20251128153228A016.pdf\",\"type\":\"新疆图书\"}]', 0, 1, NULL, '133', '2025-11-28 16:44:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (675, 1, 143, 5, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:43:22\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":53,\"name\":\"测试音频111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154246A018.png\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Empire of Angels_20251126154315A019.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Empire of Angels_20251126154315A019.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":5065709,\\\"metadata\\\":null,\\\"uid\\\":1764142995804,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":5,\"stage\":2,\"tagIds\":\"3\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":5065709,\"size\":5065709,\"url\":\"/statics/2025/11/26/Empire%20of%20Angels_20251126154315A019.mp3\",\"type\":\"测试音频111111\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:44:26\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":54,\"name\":\"测试音频22222222\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154418A021.png\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频2222222222222

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Immortal_20251126154358A020.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":3965640,\\\"metadata\\\":null,\\\"uid\\\":1764143038890,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":2,\"typeId\":5,\"stage\":2,\"tagIds\":\"4,5\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":3965640,\"size\":3965640,\"url\":\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\",\"type\":\"测试音频22222222\"}]', 0, 1, NULL, '133', '2025-11-28 16:44:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (676, 1, 143, 8, '{\"id\":57,\"name\":\"测试模型1111111\",\"url\":\"/statics/%E8%99%9A%E6%8B%9F%E4%BB%BF%E7%9C%9F3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\",\"size\":598034,\"type\":\"测试模型1111111\",\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:49:38\",\"updateBy\":\"100\",\"updateTime\":\"2025-11-27 16:38:02\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/图片12_20251126154907A024.png\",\"description\":\"

测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111

\",\"viewCount\":2,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251126154935A025.obj\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1764143375410,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":8,\"stage\":2,\"tagIds\":\"2\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"3D模型\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, 1, NULL, '133', '2025-11-28 16:44:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (677, 1, 143, 104, '[10321,10350,10347,10322,10343,10342,10323,10352,10349]', 0, 1, NULL, '133', '2025-11-28 16:44:26', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (678, 1, 144, 101, '

11

', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (679, 1, 144, 102, '', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (680, 1, 144, 2, '', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (681, 1, 144, 1, '', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (682, 1, 144, 7, '', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (683, 1, 144, 9, '{\"id\":64,\"name\":\"第一章 红色展厅介绍\",\"url\":\"/statics/virtualSimulation/2025/11/28/%E7%AC%AC%E4%B8%80%E7%AB%A0%E7%BA%A2%E8%89%B2%E8%99%9A%E6%8B%9F%E5%B1%95%E9%A6%86_20251128114310A008/index.html\",\"size\":146428201,\"type\":\"第一章 红色展厅介绍\",\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 11:45:32\",\"updateBy\":\"133\",\"updateTime\":\"2025-11-28 12:00:53\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\",\"description\":\"

哈哈哈哈

\",\"viewCount\":3,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\",\\\"originalName\\\":\\\"第一章红色虚拟展馆.zip\\\",\\\"size\\\":146428201,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1764301392734,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":1,\"typeId\":9,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"虚拟仿真展馆\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (684, 1, 144, 103, '', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (685, 1, 144, 10, '', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (686, 1, 144, 5, '', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (687, 1, 144, 8, '', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (688, 1, 144, 104, '', 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (689, 21, 145, 101, '

你好,我是教学引导1111

\"tx_20251128150302A012.png\"\"微信图片_20251119121159_222_64_20251128154645A019.jpg\"

', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:36'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (690, 21, 145, 102, '

你好,我是学习指引

\"bg1_20251128150329A013.jpg\"

', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:36'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (691, 21, 145, 2, '{\"id\":45,\"name\":\"测试视频资源1\",\"url\":\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\",\"size\":14794783,\"duration\":74.35,\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-12 15:29:05\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\",\"description\":\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":14794783,\\\"metadata\\\":null,\\\"uid\\\":1764142124231,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":2,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"1,2\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"视频\",\"referenceCount\":5,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:36'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (692, 21, 145, 1, '[{\"name\":\"企业技术需求征集表_20251128150458A014.docx\",\"url\":\"/statics/2025/11/28/企业技术需求征集表_20251128150458A014.docx\",\"size\":21814,\"type\":\"DOCX\",\"source\":\"本地上传\"}]', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:36'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (693, 21, 145, 7, '', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:36'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (694, 21, 145, 9, '', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:37'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (695, 21, 145, 103, '[{\"url\":\"http://news.youth.cn/sz/202511/t20251128_16374961.htm\",\"title\":\"中共大事件\",\"description\":\"中共大事件\",\"addTime\":\"2025/11/28 15:05:58\"}]', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:37'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (696, 21, 145, 10, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 15:32:34\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":67,\"name\":\"新疆图书\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"description\":\"

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":1941907,\"size\":1941907,\"url\":\"/statics/2025/11/28/%E6%8B%9B%E6%A0%87%E6%96%87%E4%BB%B6-%E7%94%98%E8%82%83%E5%8C%BB%E5%AD%A6%E9%99%A2%E6%80%9D%E6%94%BF%E8%AF%BE%E5%AE%9E%E8%B7%B5%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F%E8%B4%AD%E7%BD%AE%E9%A1%B9%E7%9B%AE%EF%BC%88%E5%AE%9A%E7%A8%BF%EF%BC%89%20_20251128153228A016.pdf\",\"type\":\"新疆图书\"}]', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:37'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (697, 21, 145, 5, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:43:22\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":53,\"name\":\"测试音频111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154246A018.png\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Empire of Angels_20251126154315A019.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Empire of Angels_20251126154315A019.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":5065709,\\\"metadata\\\":null,\\\"uid\\\":1764142995804,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":5,\"stage\":2,\"tagIds\":\"3\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":5065709,\"size\":5065709,\"url\":\"/statics/2025/11/26/Empire%20of%20Angels_20251126154315A019.mp3\",\"type\":\"测试音频111111\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:44:26\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":54,\"name\":\"测试音频22222222\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154418A021.png\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频2222222222222

\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"Immortal_20251126154358A020.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":3965640,\\\"metadata\\\":null,\\\"uid\\\":1764143038890,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":2,\"typeId\":5,\"stage\":2,\"tagIds\":\"4,5\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":3965640,\"size\":3965640,\"url\":\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\",\"type\":\"测试音频22222222\"}]', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:37'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (698, 21, 145, 8, '{\"id\":57,\"name\":\"测试模型1111111\",\"url\":\"/statics/%E8%99%9A%E6%8B%9F%E4%BB%BF%E7%9C%9F3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\",\"size\":598034,\"type\":\"测试模型1111111\",\"source\":\"1\",\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:49:38\",\"updateBy\":\"100\",\"updateTime\":\"2025-11-27 16:38:02\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"超级管理员\",\"sourceUrl\":\"\",\"coverImgPath\":\"/statics/2025/11/26/图片12_20251126154907A024.png\",\"description\":\"

测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111

\",\"viewCount\":2,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251126154935A025.obj\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1764143375410,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":8,\"stage\":2,\"tagIds\":\"2\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"3D模型\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null}', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:37'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (699, 21, 145, 104, '[10321,10350,10347,10322,10343,10342,10323,10352,10349]', 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, '2025-11-28 17:01:38'); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (700, 1, 123, 101, '


', 0, NULL, NULL, NULL, '2025-12-01 15:59:39', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (701, 1, 123, 102, '', 0, NULL, NULL, NULL, '2025-12-01 15:59:39', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (702, 1, 123, 2, '', 0, NULL, NULL, NULL, '2025-12-01 15:59:39', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (703, 1, 123, 1, '', 0, NULL, NULL, NULL, '2025-12-01 15:59:39', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (704, 1, 123, 7, '', 0, NULL, NULL, NULL, '2025-12-01 15:59:39', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (705, 1, 123, 9, '', 0, NULL, NULL, NULL, '2025-12-01 15:59:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (706, 1, 123, 103, '', 0, NULL, NULL, NULL, '2025-12-01 15:59:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (707, 1, 123, 10, '', 0, NULL, NULL, NULL, '2025-12-01 15:59:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (708, 1, 123, 5, '', 0, NULL, NULL, NULL, '2025-12-01 15:59:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (709, 1, 123, 8, '', 0, NULL, NULL, NULL, '2025-12-01 15:59:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (710, 1, 123, 104, '', 0, NULL, NULL, NULL, '2025-12-01 15:59:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (711, 17, 146, 101, '

二位人文氛围

', 0, NULL, NULL, NULL, '2025-12-01 17:14:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (712, 17, 146, 102, '', 0, NULL, NULL, NULL, '2025-12-01 17:14:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (713, 17, 146, 2, '', 0, NULL, NULL, NULL, '2025-12-01 17:14:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (714, 17, 146, 1, '', 0, NULL, NULL, NULL, '2025-12-01 17:14:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (715, 17, 146, 7, '', 0, NULL, NULL, NULL, '2025-12-01 17:14:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (716, 17, 146, 9, '', 0, NULL, NULL, NULL, '2025-12-01 17:14:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (717, 17, 146, 103, '', 0, NULL, NULL, NULL, '2025-12-01 17:14:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (718, 17, 146, 10, '', 0, NULL, NULL, NULL, '2025-12-01 17:14:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (719, 17, 146, 5, '', 0, NULL, NULL, NULL, '2025-12-01 17:14:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (720, 17, 146, 8, '', 0, NULL, NULL, NULL, '2025-12-01 17:14:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (721, 17, 146, 104, '', 0, NULL, NULL, NULL, '2025-12-01 17:14:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (722, 1, 166, 101, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (723, 1, 166, 102, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (724, 1, 166, 2, '', 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (725, 1, 166, 1, '', 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (726, 1, 166, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (727, 1, 166, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (728, 1, 166, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (729, 1, 166, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:31', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (730, 1, 166, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (731, 1, 166, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (732, 1, 166, 104, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (733, 1, 167, 101, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (734, 1, 167, 102, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (735, 1, 167, 2, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (736, 1, 167, 1, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (737, 1, 167, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (738, 1, 167, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (739, 1, 167, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (740, 1, 167, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (741, 1, 167, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (742, 1, 167, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (743, 1, 167, 104, '', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (744, 1, 168, 101, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (745, 1, 168, 102, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, 1, NULL, '123', '2025-12-08 11:17:32', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (746, 1, 168, 2, '{\"id\":45,\"name\":\"测试视频资源1\",\"url\":\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\",\"size\":14794783,\"duration\":74.35,\"source\":\"系统内置\"}', 0, 1, NULL, '123', '2025-12-08 11:17:33', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (747, 1, 168, 1, '', 0, 1, NULL, '123', '2025-12-08 11:17:33', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (748, 1, 168, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:33', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (749, 1, 168, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:33', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (750, 1, 168, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:33', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (751, 1, 168, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:33', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (752, 1, 168, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:33', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (753, 1, 168, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:33', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (754, 1, 168, 104, '', 0, 1, NULL, '123', '2025-12-08 11:17:33', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (755, 1, 152, 101, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (756, 1, 152, 102, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (757, 1, 152, 2, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (758, 1, 152, 1, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (759, 1, 152, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (760, 1, 152, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (761, 1, 152, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (762, 1, 152, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (763, 1, 152, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (764, 1, 152, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (765, 1, 152, 104, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (766, 1, 153, 101, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (767, 1, 153, 102, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (768, 1, 153, 2, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (769, 1, 153, 1, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (770, 1, 153, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (771, 1, 153, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:34', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (772, 1, 153, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (773, 1, 153, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (774, 1, 153, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (775, 1, 153, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (776, 1, 153, 104, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (777, 1, 154, 101, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (778, 1, 154, 102, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (779, 1, 154, 2, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (780, 1, 154, 1, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (781, 1, 154, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (782, 1, 154, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (783, 1, 154, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (784, 1, 154, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (785, 1, 154, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (786, 1, 154, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (787, 1, 154, 104, '', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (788, 1, 161, 101, '

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神fsfsdfsdf

', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (789, 1, 161, 102, '

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

', 0, 1, NULL, '123', '2025-12-08 11:17:35', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (790, 1, 161, 2, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (791, 1, 161, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"size\":888915,\"url\":\"\",\"type\":\"测试课件111111\",\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null}]', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (792, 1, 161, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (793, 1, 161, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (794, 1, 161, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (795, 1, 161, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (796, 1, 161, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (797, 1, 161, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (798, 1, 161, 104, '[10351,10350,10347]', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (799, 1, 162, 101, '

中国精神00010-bbbbbbbsffsddsfdf

', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (800, 1, 162, 102, '

中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb

', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (801, 1, 162, 2, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (802, 1, 162, 1, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (803, 1, 162, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (804, 1, 162, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (805, 1, 162, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (806, 1, 162, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (807, 1, 162, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:36', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (808, 1, 162, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (809, 1, 162, 104, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (810, 1, 163, 101, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (811, 1, 163, 102, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (812, 1, 163, 2, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (813, 1, 163, 1, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (814, 1, 163, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (815, 1, 163, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (816, 1, 163, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (817, 1, 163, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (818, 1, 163, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (819, 1, 163, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (820, 1, 163, 104, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (821, 1, 164, 101, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (822, 1, 164, 102, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (823, 1, 164, 2, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (824, 1, 164, 1, '', 0, 1, NULL, '123', '2025-12-08 11:17:37', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (825, 1, 164, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (826, 1, 164, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (827, 1, 164, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (828, 1, 164, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (829, 1, 164, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (830, 1, 164, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (831, 1, 164, 104, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (832, 1, 165, 101, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (833, 1, 165, 102, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (834, 1, 165, 2, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (835, 1, 165, 1, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (836, 1, 165, 7, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (837, 1, 165, 9, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (838, 1, 165, 103, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (839, 1, 165, 10, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (840, 1, 165, 5, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (841, 1, 165, 8, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (842, 1, 165, 104, '', 0, 1, NULL, '123', '2025-12-08 11:17:38', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (843, 1, 188, 101, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (844, 1, 188, 102, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (845, 1, 188, 2, '', 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (846, 1, 188, 1, '', 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (847, 1, 188, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (848, 1, 188, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:40', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (849, 1, 188, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (850, 1, 188, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (851, 1, 188, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (852, 1, 188, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (853, 1, 188, 104, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (854, 1, 189, 101, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (855, 1, 189, 102, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (856, 1, 189, 2, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (857, 1, 189, 1, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (858, 1, 189, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (859, 1, 189, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (860, 1, 189, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (861, 1, 189, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (862, 1, 189, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (863, 1, 189, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:41', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (864, 1, 189, 104, '', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (865, 1, 190, 101, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (866, 1, 190, 102, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (867, 1, 190, 2, '{\"id\":45,\"name\":\"测试视频资源1\",\"url\":\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\",\"size\":14794783,\"duration\":74.35,\"source\":\"系统内置\"}', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (868, 1, 190, 1, '', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (869, 1, 190, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (870, 1, 190, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (871, 1, 190, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (872, 1, 190, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (873, 1, 190, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (874, 1, 190, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (875, 1, 190, 104, '', 0, 1, NULL, '1', '2025-12-10 10:47:42', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (876, 1, 174, 101, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, 1, NULL, '1', '2025-12-10 10:47:43', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (877, 1, 174, 102, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, 1, NULL, '1', '2025-12-10 10:47:43', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (878, 1, 174, 2, '', 0, 1, NULL, '1', '2025-12-10 10:47:43', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (879, 1, 174, 1, '', 0, 1, NULL, '1', '2025-12-10 10:47:43', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (880, 1, 174, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:43', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (881, 1, 174, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:43', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (882, 1, 174, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:43', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (883, 1, 174, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:43', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (884, 1, 174, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:43', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (885, 1, 174, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (886, 1, 174, 104, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (887, 1, 175, 101, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (888, 1, 175, 102, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (889, 1, 175, 2, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (890, 1, 175, 1, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (891, 1, 175, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (892, 1, 175, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (893, 1, 175, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (894, 1, 175, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (895, 1, 175, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (896, 1, 175, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (897, 1, 175, 104, '', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (898, 1, 176, 101, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, 1, NULL, '1', '2025-12-10 10:47:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (899, 1, 176, 102, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (900, 1, 176, 2, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (901, 1, 176, 1, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (902, 1, 176, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (903, 1, 176, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (904, 1, 176, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (905, 1, 176, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (906, 1, 176, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (907, 1, 176, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (908, 1, 176, 104, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (909, 1, 183, 101, '

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神fsfsdfsdf

', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (910, 1, 183, 102, '

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (911, 1, 183, 2, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (912, 1, 183, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"size\":888915,\"url\":\"\",\"type\":\"测试课件111111\",\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null}]', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (913, 1, 183, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (914, 1, 183, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (915, 1, 183, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (916, 1, 183, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (917, 1, 183, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (918, 1, 183, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (919, 1, 183, 104, '[10351,10350,10347]', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (920, 1, 184, 101, '

中国精神00010-bbbbbbbsffsddsfdf

', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (921, 1, 184, 102, '

中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb

', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (922, 1, 184, 2, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (923, 1, 184, 1, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (924, 1, 184, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (925, 1, 184, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (926, 1, 184, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (927, 1, 184, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (928, 1, 184, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (929, 1, 184, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (930, 1, 184, 104, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (931, 1, 185, 101, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (932, 1, 185, 102, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (933, 1, 185, 2, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (934, 1, 185, 1, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (935, 1, 185, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (936, 1, 185, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (937, 1, 185, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (938, 1, 185, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (939, 1, 185, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (940, 1, 185, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (941, 1, 185, 104, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (942, 1, 186, 101, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (943, 1, 186, 102, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (944, 1, 186, 2, '', 0, 1, NULL, '1', '2025-12-10 10:47:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (945, 1, 186, 1, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (946, 1, 186, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (947, 1, 186, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (948, 1, 186, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (949, 1, 186, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (950, 1, 186, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (951, 1, 186, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (952, 1, 186, 104, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (953, 1, 187, 101, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (954, 1, 187, 102, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (955, 1, 187, 2, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (956, 1, 187, 1, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (957, 1, 187, 7, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (958, 1, 187, 9, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (959, 1, 187, 103, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (960, 1, 187, 10, '', 0, 1, NULL, '1', '2025-12-10 10:47:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (961, 1, 187, 5, '', 0, 1, NULL, '1', '2025-12-10 10:47:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (962, 1, 187, 8, '', 0, 1, NULL, '1', '2025-12-10 10:47:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (963, 1, 187, 104, '', 0, 1, NULL, '1', '2025-12-10 10:47:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (964, 1, 214, 101, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (965, 1, 214, 102, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (966, 1, 214, 2, '', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (967, 1, 214, 1, '', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (968, 1, 214, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (969, 1, 214, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (970, 1, 214, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (971, 1, 214, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (972, 1, 214, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (973, 1, 214, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (974, 1, 214, 104, '', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (975, 1, 215, 101, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (976, 1, 215, 102, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, 1, NULL, '110', '2025-12-10 15:55:44', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (977, 1, 215, 2, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (978, 1, 215, 1, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (979, 1, 215, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (980, 1, 215, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (981, 1, 215, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (982, 1, 215, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (983, 1, 215, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (984, 1, 215, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (985, 1, 215, 104, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (986, 1, 216, 101, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (987, 1, 216, 102, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (988, 1, 216, 2, '{\"id\":45,\"name\":\"测试视频资源1\",\"url\":\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\",\"size\":14794783,\"duration\":74.35,\"source\":\"系统内置\"}', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (989, 1, 216, 1, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (990, 1, 216, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (991, 1, 216, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (992, 1, 216, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:45', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (993, 1, 216, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (994, 1, 216, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (995, 1, 216, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (996, 1, 216, 104, '', 0, 1, NULL, '110', '2025-12-10 15:55:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (997, 1, 200, 101, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, 1, NULL, '110', '2025-12-10 15:55:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (998, 1, 200, 102, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, 1, NULL, '110', '2025-12-10 15:55:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (999, 1, 200, 2, '', 0, 1, NULL, '110', '2025-12-10 15:55:46', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1000, 1, 200, 1, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1001, 1, 200, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1002, 1, 200, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1003, 1, 200, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1004, 1, 200, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1005, 1, 200, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1006, 1, 200, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1007, 1, 200, 104, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1008, 1, 201, 101, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1009, 1, 201, 102, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1010, 1, 201, 2, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1011, 1, 201, 1, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1012, 1, 201, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1013, 1, 201, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1014, 1, 201, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1015, 1, 201, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:47', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1016, 1, 201, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1017, 1, 201, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1018, 1, 201, 104, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1019, 1, 202, 101, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1020, 1, 202, 102, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1021, 1, 202, 2, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1022, 1, 202, 1, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1023, 1, 202, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1024, 1, 202, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1025, 1, 202, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1026, 1, 202, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1027, 1, 202, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1028, 1, 202, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1029, 1, 202, 104, '', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1030, 1, 209, 101, '

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神fsfsdfsdf

', 0, 1, NULL, '110', '2025-12-10 15:55:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1031, 1, 209, 102, '

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1032, 1, 209, 2, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1033, 1, 209, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"size\":888915,\"url\":\"\",\"type\":\"测试课件111111\",\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null}]', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1034, 1, 209, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1035, 1, 209, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1036, 1, 209, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1037, 1, 209, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1038, 1, 209, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1039, 1, 209, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1040, 1, 209, 104, '[10351,10350,10347]', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1041, 1, 210, 101, '

中国精神00010-bbbbbbbsffsddsfdf

', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1042, 1, 210, 102, '

中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb

', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1043, 1, 210, 2, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1044, 1, 210, 1, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1045, 1, 210, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1046, 1, 210, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1047, 1, 210, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1048, 1, 210, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1049, 1, 210, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1050, 1, 210, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1051, 1, 210, 104, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1052, 1, 211, 101, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1053, 1, 211, 102, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1054, 1, 211, 2, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1055, 1, 211, 1, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1056, 1, 211, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1057, 1, 211, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1058, 1, 211, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1059, 1, 211, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1060, 1, 211, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1061, 1, 211, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1062, 1, 211, 104, '', 0, 1, NULL, '110', '2025-12-10 15:55:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1063, 1, 212, 101, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1064, 1, 212, 102, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1065, 1, 212, 2, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1066, 1, 212, 1, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1067, 1, 212, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1068, 1, 212, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1069, 1, 212, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1070, 1, 212, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1071, 1, 212, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1072, 1, 212, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1073, 1, 212, 104, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1074, 1, 213, 101, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1075, 1, 213, 102, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1076, 1, 213, 2, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1077, 1, 213, 1, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1078, 1, 213, 7, '', 0, 1, NULL, '110', '2025-12-10 15:55:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1079, 1, 213, 9, '', 0, 1, NULL, '110', '2025-12-10 15:55:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1080, 1, 213, 103, '', 0, 1, NULL, '110', '2025-12-10 15:55:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1081, 1, 213, 10, '', 0, 1, NULL, '110', '2025-12-10 15:55:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1082, 1, 213, 5, '', 0, 1, NULL, '110', '2025-12-10 15:55:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1083, 1, 213, 8, '', 0, 1, NULL, '110', '2025-12-10 15:55:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1084, 1, 213, 104, '', 0, 1, NULL, '110', '2025-12-10 15:55:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1085, 1, 222, 101, '

111

', 0, 1, NULL, '123', '2025-12-10 18:11:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1086, 1, 222, 102, '

2222

', 0, 1, NULL, '123', '2025-12-10 18:11:48', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1087, 1, 222, 2, '{\"id\":16,\"name\":\"Python编程入门导论.mp4\",\"url\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"size\":6611125,\"duration\":5.066667,\"source\":\"2\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 17:37:01\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"Python编程入门导论.mp4\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":2,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"视频\",\"referenceCount\":2}', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1088, 1, 222, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-07 17:55:23\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:05:43\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":24,\"name\":\"test\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

111

\",\"viewCount\":6,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":32065481,\\\"metadata\\\":null,\\\"uid\\\":1762851694309,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":32065481,\"size\":32065481,\"url\":\"\",\"type\":\"test\"},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:00:45\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":20,\"name\":\"Python编程入门导论.pdf\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"Python编程入门导论.pdf\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/05/%E4%B8%AD%E7%A1%95%E6%80%9D%E6%94%BF-%E9%9C%80%E6%B1%82%E8%AF%B4%E6%98%8E%E4%B9%A6_20251105173357A012.docx\",\"type\":\"pdf\"}]', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1089, 1, 222, 7, '{\"id\":25,\"name\":\"毛泽东故居全景展馆\",\"url\":\"/statics/panorama/2025/11/06/%E5%85%A8%E6%99%AF%E6%B5%8B%E8%AF%95_20251106103135A003/index.html\",\"size\":6611125,\"type\":\"毛泽东故居全景展馆\",\"source\":\"1\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:02:10\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/panorama/2025/11/06/全景测试_20251106103135A003/index.html\",\"coverImgPath\":\"\",\"description\":\"毛泽东故居全景展馆\",\"viewCount\":2,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":7,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"全景\",\"referenceCount\":1}', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1090, 1, 222, 9, '{\"id\":27,\"name\":\"毛泽东故居全景展馆\",\"url\":\"/statics/panorama/2025/11/06/%E5%85%A8%E6%99%AF%E6%B5%8B%E8%AF%95_20251106103135A003/index.html\",\"size\":6611125,\"type\":\"毛泽东故居全景展馆\",\"source\":\"1\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/panorama/2025/11/06/全景测试_20251106103135A003/index.html\",\"coverImgPath\":\"\",\"description\":\"毛泽东故居全景展馆\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":9,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"虚拟仿真展馆\",\"referenceCount\":1}', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1091, 1, 222, 103, '[{\"url\":\"https://tailwind.nodejs.cn/docs/flex-direction\",\"title\":\"flex-direction\",\"description\":\"flex-direction\",\"addTime\":\"2025/11/12 14:41:11\"}]', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1092, 1, 222, 10, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 17:45:57\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":31,\"name\":\"人工智能前沿技术讲座.pptx\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"人工智能前沿技术讲座.pptx\",\"viewCount\":99,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/05/%E4%B8%AD%E7%A1%95%E6%80%9D%E6%94%BF-%E9%9C%80%E6%B1%82%E8%AF%B4%E6%98%8E%E4%B9%A6_20251105173357A012.docx\",\"type\":\"pptx\"}]', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1093, 1, 222, 5, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":29,\"name\":\"爱国主义教育讲座.mp3\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/07/伍佰 & China Blue - 突然的自我_20251107152354A002.mp3\",\"coverImgPath\":\"\",\"description\":\"爱国主义教育讲座.mp3\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":5,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":2,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/07/%E4%BC%8D%E4%BD%B0%20&%20China%20Blue%20-%20%E7%AA%81%E7%84%B6%E7%9A%84%E8%87%AA%E6%88%91_20251107152354A002.mp3\",\"type\":\"mp3\"}]', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1094, 1, 222, 8, '{\"id\":33,\"name\":\"古代建筑模型\",\"url\":\"/statics/3dModel/2025/11/06/d2z-ok_20251106155613A001.fbx\",\"size\":6611125,\"type\":\"古代建筑模型\",\"source\":\"系统内置\"}', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1095, 1, 222, 104, '[10327,10330,10328,10321,10318,10329,10322,10319,10326,10325,10324,10323,10320]', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1096, 1, 224, 101, '


', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1097, 1, 224, 102, '


', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1098, 1, 224, 2, '{\"id\":16,\"name\":\"Python编程入门导论.mp4\",\"url\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"size\":6611125,\"duration\":5.066667,\"source\":\"自主创作\"}', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1099, 1, 224, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:33:39\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 16:04:19\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":48,\"name\":\"测试课件222222\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":19353929,\\\"metadata\\\":null,\\\"uid\\\":1764142415469,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":3,\"typeId\":1,\"stage\":3,\"tagIds\":\"1\",\"premiumTypes\":\"2\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"typeName\":\"课件\",\"referenceCount\":4,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":19353929,\"size\":19353929,\"url\":\"\",\"type\":\"测试课件222222\",\"sysAndCurrentSchool\":false,\"currentSchoolId\":null},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"fileName\":\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\",\"size\":888915,\"url\":\"/statics/2025/11/26/%E5%AF%92%E9%97%A8%E8%AF%A1%E5%B0%8612%E5%B1%80+(%E4%BC%8F%E7%BE%B2)_20251126153231A007.pdf\",\"type\":\"pdf\"}]', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1100, 1, 224, 7, '', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1101, 1, 224, 9, '', 0, 1, NULL, '123', '2025-12-10 18:11:49', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1102, 1, 224, 103, '', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1103, 1, 224, 10, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:52:29\",\"updateBy\":\"100\",\"updateTime\":\"2025-11-27 16:38:19\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":58,\"name\":\"测试图书1111111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\",\"description\":\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764143538858,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":2,\"typeId\":10,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"fileName\":\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\",\"size\":888915,\"url\":\"/statics/2025/11/26/%E5%AF%92%E9%97%A8%E8%AF%A1%E5%B0%8612%E5%B1%80+(%E4%BC%8F%E7%BE%B2)_20251126155218A027.pdf\",\"type\":\"pdf\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 15:32:34\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-05 14:30:29\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":67,\"name\":\"新疆图书\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\",\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"description\":\"

\",\"viewCount\":8,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":1941907,\"fileName\":\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\",\"size\":1941907,\"url\":\"/statics/2025/11/28/%E6%8B%9B%E6%A0%87%E6%96%87%E4%BB%B6-%E7%94%98%E8%82%83%E5%8C%BB%E5%AD%A6%E9%99%A2%E6%80%9D%E6%94%BF%E8%AF%BE%E5%AE%9E%E8%B7%B5%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F%E8%B4%AD%E7%BD%AE%E9%A1%B9%E7%9B%AE%EF%BC%88%E5%AE%9A%E7%A8%BF%EF%BC%89%20_20251128153228A016.pdf\",\"type\":\"pdf\"}]', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1104, 1, 224, 5, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":29,\"name\":\"爱国主义教育讲座.mp3\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/07/伍佰 & China Blue - 突然的自我_20251107152354A002.mp3\",\"coverImgPath\":\"\",\"description\":\"爱国主义教育讲座.mp3\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":5,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/07/%E4%BC%8D%E4%BD%B0%20&%20China%20Blue%20-%20%E7%AA%81%E7%84%B6%E7%9A%84%E8%87%AA%E6%88%91_20251107152354A002.mp3\",\"type\":\"mp3\"}]', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1105, 1, 224, 8, '', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1106, 1, 224, 104, '[10328,10327,10318,10322,10326,10325,10324]', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1107, 1, 225, 101, '


', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1108, 1, 225, 102, '


', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1109, 1, 225, 2, '', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1110, 1, 225, 1, '', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1111, 1, 225, 7, '', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1112, 1, 225, 9, '', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1113, 1, 225, 103, '', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1114, 1, 225, 10, '', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1115, 1, 225, 5, '', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1116, 1, 225, 8, '', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1117, 1, 225, 104, '[10328,10327,10326,10325,10324]', 0, 1, NULL, '123', '2025-12-10 18:11:50', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1118, 1, 243, 101, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1119, 1, 243, 102, '

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1120, 1, 243, 2, '', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1121, 1, 243, 1, '', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1122, 1, 243, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1123, 1, 243, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1124, 1, 243, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1125, 1, 243, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1126, 1, 243, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1127, 1, 243, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1128, 1, 243, 104, '', 0, 1, NULL, '123', '2025-12-11 09:57:51', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1129, 1, 244, 101, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1130, 1, 244, 102, '

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1131, 1, 244, 2, '', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1132, 1, 244, 1, '', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1133, 1, 244, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1134, 1, 244, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1135, 1, 244, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1136, 1, 244, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1137, 1, 244, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1138, 1, 244, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1139, 1, 244, 104, '', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1140, 1, 245, 101, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1141, 1, 245, 102, '

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

', 0, 1, NULL, '123', '2025-12-11 09:57:52', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1142, 1, 245, 2, '{\"id\":45,\"name\":\"测试视频资源1\",\"url\":\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\",\"size\":14794783,\"duration\":74.35,\"source\":\"系统内置\"}', 0, 1, NULL, '123', '2025-12-11 09:57:53', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1143, 1, 245, 1, '', 0, 1, NULL, '123', '2025-12-11 09:57:53', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1144, 1, 245, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:53', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1145, 1, 245, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:53', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1146, 1, 245, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:53', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1147, 1, 245, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:53', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1148, 1, 245, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:53', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1149, 1, 245, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:53', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1150, 1, 245, 104, '', 0, 1, NULL, '123', '2025-12-11 09:57:53', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1151, 1, 229, 101, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1152, 1, 229, 102, '

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1153, 1, 229, 2, '', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1154, 1, 229, 1, '', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1155, 1, 229, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1156, 1, 229, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1157, 1, 229, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1158, 1, 229, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1159, 1, 229, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1160, 1, 229, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1161, 1, 229, 104, '', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1162, 1, 230, 101, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1163, 1, 230, 102, '

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1164, 1, 230, 2, '', 0, 1, NULL, '123', '2025-12-11 09:57:54', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1165, 1, 230, 1, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1166, 1, 230, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1167, 1, 230, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1168, 1, 230, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1169, 1, 230, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1170, 1, 230, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1171, 1, 230, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1172, 1, 230, 104, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1173, 1, 231, 101, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1174, 1, 231, 102, '

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1175, 1, 231, 2, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1176, 1, 231, 1, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1177, 1, 231, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1178, 1, 231, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1179, 1, 231, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1180, 1, 231, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:55', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1181, 1, 231, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1182, 1, 231, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1183, 1, 231, 104, '', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1184, 1, 238, 101, '

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神fsfsdfsdf

', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1185, 1, 238, 102, '

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1186, 1, 238, 2, '', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1187, 1, 238, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"size\":888915,\"url\":\"\",\"type\":\"测试课件111111\",\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null}]', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1188, 1, 238, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1189, 1, 238, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1190, 1, 238, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1191, 1, 238, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1192, 1, 238, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1193, 1, 238, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1194, 1, 238, 104, '[10351,10350,10347]', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1195, 1, 239, 101, '

中国精神00010-bbbbbbbsffsddsfdf

', 0, 1, NULL, '123', '2025-12-11 09:57:56', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1196, 1, 239, 102, '

中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb

', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1197, 1, 239, 2, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1198, 1, 239, 1, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1199, 1, 239, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1200, 1, 239, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1201, 1, 239, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1202, 1, 239, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1203, 1, 239, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1204, 1, 239, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1205, 1, 239, 104, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1206, 1, 240, 101, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1207, 1, 240, 102, '

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1208, 1, 240, 2, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1209, 1, 240, 1, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1210, 1, 240, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1211, 1, 240, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:57', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1212, 1, 240, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1213, 1, 240, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1214, 1, 240, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1215, 1, 240, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1216, 1, 240, 104, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1217, 1, 241, 101, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1218, 1, 241, 102, '

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1219, 1, 241, 2, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1220, 1, 241, 1, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1221, 1, 241, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1222, 1, 241, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1223, 1, 241, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1224, 1, 241, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1225, 1, 241, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1226, 1, 241, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1227, 1, 241, 104, '', 0, 1, NULL, '123', '2025-12-11 09:57:58', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1228, 1, 242, 101, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1229, 1, 242, 102, '

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1230, 1, 242, 2, '', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1231, 1, 242, 1, '', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1232, 1, 242, 7, '', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1233, 1, 242, 9, '', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1234, 1, 242, 103, '', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1235, 1, 242, 10, '', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1236, 1, 242, 5, '', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1237, 1, 242, 8, '', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1238, 1, 242, 104, '', 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1239, 1, 48, 101, '


', 0, NULL, NULL, NULL, '2026-01-16 14:59:16', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1240, 1, 48, 102, '', 0, NULL, NULL, NULL, '2026-01-16 14:59:16', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1241, 1, 48, 2, '', 0, NULL, NULL, NULL, '2026-01-16 14:59:16', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1242, 1, 48, 1, '[{\"name\":\"深圳博瑞联三维技术有限公司-2025_20260116134550A005.pdf\",\"url\":\"/statics/2026/01/16/深圳博瑞联三维技术有限公司-2025_20260116134550A005.pdf\",\"size\":21849855,\"type\":\"PDF\",\"source\":\"本地上传\"},{\"name\":\"第5章 遵守道德规范 锤炼道德品格_20260116135633A006.pptx\",\"url\":\"/statics/2026/01/16/第5章 遵守道德规范 锤炼道德品格_20260116135633A006.pptx\",\"size\":9064650,\"type\":\"PPTX\",\"source\":\"本地上传\"}]', 0, NULL, NULL, NULL, '2026-01-16 14:59:17', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1243, 1, 48, 7, '', 0, NULL, NULL, NULL, '2026-01-16 14:59:17', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1244, 1, 48, 9, '', 0, NULL, NULL, NULL, '2026-01-16 14:59:17', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1245, 1, 48, 103, '', 0, NULL, NULL, NULL, '2026-01-16 14:59:17', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1246, 1, 48, 10, '', 0, NULL, NULL, NULL, '2026-01-16 14:59:17', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1247, 1, 48, 5, '', 0, NULL, NULL, NULL, '2026-01-16 14:59:17', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1248, 1, 48, 8, '', 0, NULL, NULL, NULL, '2026-01-16 14:59:17', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1249, 1, 48, 104, '', 0, NULL, NULL, NULL, '2026-01-16 14:59:17', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1250, 1, 257, 101, '


', 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1251, 1, 257, 102, '', 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1252, 1, 257, 2, '', 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1253, 1, 257, 1, '[{\"name\":\"深圳博瑞联三维技术有限公司-2025_20260116134550A005.pdf\",\"url\":\"/statics/2026/01/16/深圳博瑞联三维技术有限公司-2025_20260116134550A005.pdf\",\"size\":21849855,\"type\":\"PDF\",\"source\":\"本地上传\"},{\"name\":\"第5章 遵守道德规范 锤炼道德品格_20260116135633A006.pptx\",\"url\":\"/statics/2026/01/16/第5章 遵守道德规范 锤炼道德品格_20260116135633A006.pptx\",\"size\":9064650,\"type\":\"PPTX\",\"source\":\"本地上传\"}]', 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1254, 1, 257, 7, '', 0, 1, NULL, '1', '2026-01-16 15:22:21', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1255, 1, 257, 9, '', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1256, 1, 257, 103, '', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1257, 1, 257, 10, '', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1258, 1, 257, 5, '', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1259, 1, 257, 8, '', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1260, 1, 257, 104, '', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1261, 1, 253, 101, '

111

', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1262, 1, 253, 102, '

2222

', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1263, 1, 253, 2, '{\"id\":16,\"name\":\"Python编程入门导论.mp4\",\"url\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"size\":6611125,\"duration\":5.066667,\"source\":\"2\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 17:37:01\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"Python编程入门导论.mp4\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":2,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"视频\",\"referenceCount\":2}', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1264, 1, 253, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-07 17:55:23\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:05:43\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":24,\"name\":\"test\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

111

\",\"viewCount\":6,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":32065481,\\\"metadata\\\":null,\\\"uid\\\":1762851694309,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":32065481,\"size\":32065481,\"url\":\"\",\"type\":\"test\"},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:00:45\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":20,\"name\":\"Python编程入门导论.pdf\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"Python编程入门导论.pdf\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":1,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/05/%E4%B8%AD%E7%A1%95%E6%80%9D%E6%94%BF-%E9%9C%80%E6%B1%82%E8%AF%B4%E6%98%8E%E4%B9%A6_20251105173357A012.docx\",\"type\":\"pdf\"}]', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1265, 1, 253, 7, '{\"id\":25,\"name\":\"毛泽东故居全景展馆\",\"url\":\"/statics/panorama/2025/11/06/%E5%85%A8%E6%99%AF%E6%B5%8B%E8%AF%95_20251106103135A003/index.html\",\"size\":6611125,\"type\":\"毛泽东故居全景展馆\",\"source\":\"1\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:02:10\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/panorama/2025/11/06/全景测试_20251106103135A003/index.html\",\"coverImgPath\":\"\",\"description\":\"毛泽东故居全景展馆\",\"viewCount\":2,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":7,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"全景\",\"referenceCount\":1}', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1266, 1, 253, 9, '{\"id\":27,\"name\":\"毛泽东故居全景展馆\",\"url\":\"/statics/panorama/2025/11/06/%E5%85%A8%E6%99%AF%E6%B5%8B%E8%AF%95_20251106103135A003/index.html\",\"size\":6611125,\"type\":\"毛泽东故居全景展馆\",\"source\":\"1\",\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"authorId\":1,\"authorName\":\"admin\",\"sourceUrl\":\"/statics/panorama/2025/11/06/全景测试_20251106103135A003/index.html\",\"coverImgPath\":\"\",\"description\":\"毛泽东故居全景展馆\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":9,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"虚拟仿真展馆\",\"referenceCount\":1}', 0, 1, NULL, '1', '2026-01-16 15:22:22', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1267, 1, 253, 103, '[{\"url\":\"https://tailwind.nodejs.cn/docs/flex-direction\",\"title\":\"flex-direction\",\"description\":\"flex-direction\",\"addTime\":\"2025/11/12 14:41:11\"}]', 0, 1, NULL, '1', '2026-01-16 15:22:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1268, 1, 253, 10, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 17:45:57\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":31,\"name\":\"人工智能前沿技术讲座.pptx\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\",\"coverImgPath\":\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\",\"description\":\"人工智能前沿技术讲座.pptx\",\"viewCount\":99,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/05/%E4%B8%AD%E7%A1%95%E6%80%9D%E6%94%BF-%E9%9C%80%E6%B1%82%E8%AF%B4%E6%98%8E%E4%B9%A6_20251105173357A012.docx\",\"type\":\"pptx\"}]', 0, 1, NULL, '1', '2026-01-16 15:22:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1269, 1, 253, 5, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":29,\"name\":\"爱国主义教育讲座.mp3\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"1\",\"sourceUrl\":\"/statics/2025/11/07/伍佰 & China Blue - 突然的自我_20251107152354A002.mp3\",\"coverImgPath\":\"\",\"description\":\"爱国主义教育讲座.mp3\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":5,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":2,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/07/%E4%BC%8D%E4%BD%B0%20&%20China%20Blue%20-%20%E7%AA%81%E7%84%B6%E7%9A%84%E8%87%AA%E6%88%91_20251107152354A002.mp3\",\"type\":\"mp3\"}]', 0, 1, NULL, '1', '2026-01-16 15:22:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1270, 1, 253, 8, '{\"id\":33,\"name\":\"古代建筑模型\",\"url\":\"/statics/3dModel/2025/11/06/d2z-ok_20251106155613A001.fbx\",\"size\":6611125,\"type\":\"古代建筑模型\",\"source\":\"系统内置\"}', 0, 1, NULL, '1', '2026-01-16 15:22:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1271, 1, 253, 104, '[10327,10330,10328,10321,10318,10329,10322,10319,10326,10325,10324,10323,10320]', 0, 1, NULL, '1', '2026-01-16 15:22:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1272, 1, 255, 101, '


', 0, 1, NULL, '1', '2026-01-16 15:22:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1273, 1, 255, 102, '


', 0, 1, NULL, '1', '2026-01-16 15:22:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1274, 1, 255, 2, '{\"id\":16,\"name\":\"Python编程入门导论.mp4\",\"url\":\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\",\"size\":6611125,\"duration\":5.066667,\"source\":\"自主创作\"}', 0, 1, NULL, '1', '2026-01-16 15:22:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1275, 1, 255, 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:33:39\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 16:04:19\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":48,\"name\":\"测试课件222222\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"1\",\"sourceUrl\":\"\",\"coverImgPath\":\"\",\"description\":\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":19353929,\\\"metadata\\\":null,\\\"uid\\\":1764142415469,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":3,\"typeId\":1,\"stage\":3,\"tagIds\":\"1\",\"premiumTypes\":\"2\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"typeName\":\"课件\",\"referenceCount\":4,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":19353929,\"size\":19353929,\"url\":\"\",\"type\":\"测试课件222222\",\"sysAndCurrentSchool\":false,\"currentSchoolId\":null},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:32:35\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:38:34\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":47,\"name\":\"测试课件111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\",\"coverImgPath\":\"\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":2,\"typeId\":1,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"课件\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"fileName\":\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\",\"size\":888915,\"url\":\"/statics/2025/11/26/%E5%AF%92%E9%97%A8%E8%AF%A1%E5%B0%8612%E5%B1%80+(%E4%BC%8F%E7%BE%B2)_20251126153231A007.pdf\",\"type\":\"pdf\"}]', 0, 1, NULL, '1', '2026-01-16 15:22:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1276, 1, 255, 7, '', 0, 1, NULL, '1', '2026-01-16 15:22:23', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1277, 1, 255, 9, '', 0, 1, NULL, '1', '2026-01-16 15:22:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1278, 1, 255, 103, '', 0, 1, NULL, '1', '2026-01-16 15:22:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1279, 1, 255, 10, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-26 15:52:29\",\"updateBy\":\"100\",\"updateTime\":\"2025-11-27 16:38:19\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":58,\"name\":\"测试图书1111111111\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\",\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\",\"description\":\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\",\"viewCount\":1,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764143538858,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":2,\"subjectId\":2,\"typeId\":10,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"1\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":1,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":888915,\"fileName\":\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\",\"size\":888915,\"url\":\"/statics/2025/11/26/%E5%AF%92%E9%97%A8%E8%AF%A1%E5%B0%8612%E5%B1%80+(%E4%BC%8F%E7%BE%B2)_20251126155218A027.pdf\",\"type\":\"pdf\"},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-28 15:32:34\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-05 14:30:29\",\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":67,\"name\":\"新疆图书\",\"authorId\":1,\"authorName\":\"超级管理员\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\",\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"description\":\"

\",\"viewCount\":8,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":10,\"stage\":1,\"tagIds\":\"1\",\"premiumTypes\":\"\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"图书\",\"referenceCount\":4,\"createTimeIntervalNum\":null,\"createTimeIntervalUnit\":null,\"sysAndCurrentSchool\":false,\"currentSchoolId\":null,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":1941907,\"fileName\":\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\",\"size\":1941907,\"url\":\"/statics/2025/11/28/%E6%8B%9B%E6%A0%87%E6%96%87%E4%BB%B6-%E7%94%98%E8%82%83%E5%8C%BB%E5%AD%A6%E9%99%A2%E6%80%9D%E6%94%BF%E8%AF%BE%E5%AE%9E%E8%B7%B5%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F%E8%B4%AD%E7%BD%AE%E9%A1%B9%E7%9B%AE%EF%BC%88%E5%AE%9A%E7%A8%BF%EF%BC%89%20_20251128153228A016.pdf\",\"type\":\"pdf\"}]', 0, 1, NULL, '1', '2026-01-16 15:22:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1280, 1, 255, 5, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"id\":29,\"name\":\"爱国主义教育讲座.mp3\",\"authorId\":1,\"authorName\":\"admin\",\"source\":\"系统内置\",\"sourceUrl\":\"/statics/2025/11/07/伍佰 & China Blue - 突然的自我_20251107152354A002.mp3\",\"coverImgPath\":\"\",\"description\":\"爱国主义教育讲座.mp3\",\"viewCount\":0,\"downloadCount\":0,\"approverId\":null,\"approvalAdvice\":null,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"categoryId\":1,\"subjectId\":1,\"typeId\":5,\"stage\":1,\"tagIds\":\"2\",\"premiumTypes\":\"4\",\"approvalState\":2,\"state\":1,\"isDel\":0,\"schId\":1,\"idList\":null,\"categoryIdList\":null,\"subjectIdList\":null,\"typeIdList\":null,\"tagIdList\":null,\"schIdList\":null,\"approvalStateList\":null,\"excludeId\":null,\"typeName\":\"音频\",\"referenceCount\":1,\"sourceName\":\"系统内置\",\"sourceId\":\"1\",\"fileSize\":6611125,\"size\":6611125,\"url\":\"/statics/2025/11/07/%E4%BC%8D%E4%BD%B0%20&%20China%20Blue%20-%20%E7%AA%81%E7%84%B6%E7%9A%84%E8%87%AA%E6%88%91_20251107152354A002.mp3\",\"type\":\"mp3\"}]', 0, 1, NULL, '1', '2026-01-16 15:22:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1281, 1, 255, 8, '', 0, 1, NULL, '1', '2026-01-16 15:22:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1282, 1, 255, 104, '[10328,10327,10318,10322,10326,10325,10324]', 0, 1, NULL, '1', '2026-01-16 15:22:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1283, 1, 256, 101, '


', 0, 1, NULL, '1', '2026-01-16 15:22:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1284, 1, 256, 102, '


', 0, 1, NULL, '1', '2026-01-16 15:22:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1285, 1, 256, 2, '', 0, 1, NULL, '1', '2026-01-16 15:22:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1286, 1, 256, 1, '', 0, 1, NULL, '1', '2026-01-16 15:22:24', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1287, 1, 256, 7, '', 0, 1, NULL, '1', '2026-01-16 15:22:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1288, 1, 256, 9, '', 0, 1, NULL, '1', '2026-01-16 15:22:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1289, 1, 256, 103, '', 0, 1, NULL, '1', '2026-01-16 15:22:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1290, 1, 256, 10, '', 0, 1, NULL, '1', '2026-01-16 15:22:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1291, 1, 256, 5, '', 0, 1, NULL, '1', '2026-01-16 15:22:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1292, 1, 256, 8, '', 0, 1, NULL, '1', '2026-01-16 15:22:25', NULL, NULL); INSERT INTO `base_chapter_content` (`id`, `school_id`, `chapter_id`, `chapter_type`, `content`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1293, 1, 256, 104, '[10328,10327,10326,10325,10324]', 0, 1, NULL, '1', '2026-01-16 15:22:25', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_chapter_content_resource -- ---------------------------- DROP TABLE IF EXISTS `base_chapter_content_resource`; CREATE TABLE `base_chapter_content_resource` ( `id` bigint NOT NULL AUTO_INCREMENT, `chapter_id` bigint DEFAULT NULL COMMENT '章节ID', `resource_id` bigint DEFAULT NULL COMMENT '资源ID', `chapter_type` int DEFAULT NULL COMMENT '资源类型', `question_id` bigint DEFAULT NULL COMMENT '试题ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=397 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='章节信息内容资源ID'; -- ---------------------------- -- Records of base_chapter_content_resource -- ---------------------------- BEGIN; INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (81, 49, NULL, 104, 10318); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (82, 49, NULL, 104, 10319); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (83, 49, NULL, 104, 10320); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (92, 44, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (93, 44, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (94, 44, NULL, 104, 10318); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (95, 44, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (96, 44, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (97, 44, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (98, 44, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (99, 45, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (100, 45, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (101, 45, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (102, 45, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (103, 45, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (108, 44, 16, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (109, 44, 29, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (122, 42, 16, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (123, 42, 24, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (124, 42, 20, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (125, 42, 25, 7, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (126, 42, 27, 9, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (127, 42, 31, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (128, 42, 29, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (130, 42, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (131, 42, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (132, 42, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (133, 42, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (134, 42, NULL, 104, 10330); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (135, 42, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (136, 42, NULL, 104, 10321); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (137, 42, NULL, 104, 10318); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (138, 42, NULL, 104, 10329); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (139, 42, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (140, 42, NULL, 104, 10319); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (141, 42, NULL, 104, 10323); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (142, 42, NULL, 104, 10320); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (143, 42, 33, 8, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (179, 79, 16, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (180, 79, 24, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (181, 79, 20, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (182, 79, 25, 7, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (183, 79, 27, 9, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (184, 79, 31, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (185, 79, 29, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (186, 79, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (187, 79, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (188, 79, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (189, 79, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (190, 79, NULL, 104, 10330); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (191, 79, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (192, 79, NULL, 104, 10321); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (193, 79, NULL, 104, 10318); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (194, 79, NULL, 104, 10329); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (195, 79, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (196, 79, NULL, 104, 10319); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (197, 79, NULL, 104, 10323); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (198, 79, NULL, 104, 10320); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (199, 79, 33, 8, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (200, 81, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (201, 81, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (202, 81, NULL, 104, 10318); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (203, 81, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (204, 81, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (205, 81, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (206, 81, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (207, 81, 16, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (208, 81, 29, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (209, 82, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (210, 82, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (211, 82, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (212, 82, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (213, 82, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (214, 44, 48, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (215, 91, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (216, 112, 58, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (217, 98, 45, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (218, 91, NULL, 104, 10351); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (219, 91, NULL, 104, 10350); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (220, 91, NULL, 104, 10347); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (221, 138, 64, 9, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (222, 139, 45, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (223, 139, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (224, 139, 48, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (225, 139, 65, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (228, 139, 53, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (229, 139, 54, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (230, 139, 57, 8, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (231, 139, NULL, 104, 10321); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (232, 139, NULL, 104, 10350); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (233, 139, NULL, 104, 10347); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (234, 139, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (235, 139, NULL, 104, 10343); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (236, 139, NULL, 104, 10342); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (237, 139, NULL, 104, 10323); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (238, 139, NULL, 104, 10352); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (239, 139, NULL, 104, 10349); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (240, 139, 67, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (241, 140, 64, 9, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (242, 141, 45, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (243, 141, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (244, 141, 48, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (245, 141, 65, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (246, 141, 53, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (247, 141, 54, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (248, 141, 57, 8, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (249, 141, NULL, 104, 10321); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (250, 141, NULL, 104, 10350); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (251, 141, NULL, 104, 10347); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (252, 141, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (253, 141, NULL, 104, 10343); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (254, 141, NULL, 104, 10342); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (255, 141, NULL, 104, 10323); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (256, 141, NULL, 104, 10352); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (257, 141, NULL, 104, 10349); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (258, 141, 67, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (259, 142, 64, 9, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (260, 143, 45, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (261, 143, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (262, 143, 48, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (263, 143, 65, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (264, 143, 53, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (265, 143, 54, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (266, 143, 57, 8, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (267, 143, NULL, 104, 10321); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (268, 143, NULL, 104, 10350); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (269, 143, NULL, 104, 10347); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (270, 143, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (271, 143, NULL, 104, 10343); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (272, 143, NULL, 104, 10342); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (273, 143, NULL, 104, 10323); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (274, 143, NULL, 104, 10352); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (275, 143, NULL, 104, 10349); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (276, 143, 67, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (277, 144, 64, 9, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (278, 145, 45, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (282, 145, 53, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (283, 145, 54, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (284, 145, 57, 8, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (285, 145, NULL, 104, 10321); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (286, 145, NULL, 104, 10350); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (287, 145, NULL, 104, 10347); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (288, 145, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (289, 145, NULL, 104, 10343); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (290, 145, NULL, 104, 10342); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (291, 145, NULL, 104, 10323); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (292, 145, NULL, 104, 10352); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (293, 145, NULL, 104, 10349); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (294, 145, 67, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (295, 138, 60, 7, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (296, 44, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (297, 44, 58, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (298, 44, 67, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (299, 168, 45, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (300, 161, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (301, 161, NULL, 104, 10351); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (302, 161, NULL, 104, 10350); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (303, 161, NULL, 104, 10347); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (304, 190, 45, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (305, 183, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (306, 183, NULL, 104, 10351); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (307, 183, NULL, 104, 10350); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (308, 183, NULL, 104, 10347); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (309, 216, 45, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (310, 209, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (311, 209, NULL, 104, 10351); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (312, 209, NULL, 104, 10350); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (313, 209, NULL, 104, 10347); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (314, 222, 16, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (315, 222, 24, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (316, 222, 20, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (317, 222, 25, 7, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (318, 222, 27, 9, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (319, 222, 31, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (320, 222, 29, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (321, 222, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (322, 222, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (323, 222, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (324, 222, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (325, 222, NULL, 104, 10330); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (326, 222, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (327, 222, NULL, 104, 10321); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (328, 222, NULL, 104, 10318); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (329, 222, NULL, 104, 10329); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (330, 222, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (331, 222, NULL, 104, 10319); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (332, 222, NULL, 104, 10323); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (333, 222, NULL, 104, 10320); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (334, 222, 33, 8, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (335, 224, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (336, 224, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (337, 224, NULL, 104, 10318); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (338, 224, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (339, 224, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (340, 224, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (341, 224, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (342, 224, 16, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (343, 224, 29, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (344, 224, 48, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (345, 224, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (346, 224, 58, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (347, 224, 67, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (348, 225, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (349, 225, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (350, 225, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (351, 225, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (352, 225, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (353, 245, 45, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (354, 238, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (355, 238, NULL, 104, 10351); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (356, 238, NULL, 104, 10350); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (357, 238, NULL, 104, 10347); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (358, 253, 16, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (359, 253, 24, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (360, 253, 20, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (361, 253, 25, 7, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (362, 253, 27, 9, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (363, 253, 31, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (364, 253, 29, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (365, 253, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (366, 253, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (367, 253, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (368, 253, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (369, 253, NULL, 104, 10330); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (370, 253, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (371, 253, NULL, 104, 10321); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (372, 253, NULL, 104, 10318); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (373, 253, NULL, 104, 10329); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (374, 253, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (375, 253, NULL, 104, 10319); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (376, 253, NULL, 104, 10323); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (377, 253, NULL, 104, 10320); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (378, 253, 33, 8, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (379, 255, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (380, 255, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (381, 255, NULL, 104, 10318); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (382, 255, NULL, 104, 10322); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (383, 255, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (384, 255, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (385, 255, NULL, 104, 10324); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (386, 255, 16, 2, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (387, 255, 29, 5, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (388, 255, 48, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (389, 255, 47, 1, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (390, 255, 58, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (391, 255, 67, 10, NULL); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (392, 256, NULL, 104, 10328); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (393, 256, NULL, 104, 10327); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (394, 256, NULL, 104, 10326); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (395, 256, NULL, 104, 10325); INSERT INTO `base_chapter_content_resource` (`id`, `chapter_id`, `resource_id`, `chapter_type`, `question_id`) VALUES (396, 256, NULL, 104, 10324); COMMIT; -- ---------------------------- -- Table structure for base_class_sch -- ---------------------------- DROP TABLE IF EXISTS `base_class_sch`; CREATE TABLE `base_class_sch` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'ID', `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `course_id` bigint DEFAULT NULL COMMENT '课程ID', `course_name` varchar(512) DEFAULT NULL COMMENT '课程名称', `academic_id` bigint DEFAULT NULL COMMENT '学期ID', `address` varchar(512) DEFAULT NULL COMMENT '上课地点', `start_date` datetime DEFAULT NULL COMMENT '开始时间', `end_date` datetime DEFAULT NULL COMMENT '结束时间', `class_type` int DEFAULT '1' COMMENT '课程类型1-必修2-选修3-实践', `status` int DEFAULT '2' COMMENT '1-进行中2-未开始3-已结束', `is_del` int DEFAULT '0' COMMENT '删除标识', `state` int DEFAULT NULL COMMENT '状态', `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人', `create_time` datetime DEFAULT NULL COMMENT '创建日期', `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '更新人', `update_time` datetime DEFAULT NULL COMMENT '更新日期', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='上课信息'; -- ---------------------------- -- Records of base_class_sch -- ---------------------------- BEGIN; INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 1, 20, '改革开放四十周年成就展123aa', 14, '第五教室222', '2025-12-01 00:00:00', '2026-02-02 00:00:00', 2, 1, 0, 1, NULL, '1', '2025-11-14 16:46:03', '1', '2025-11-15 22:03:57'); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, 21, '习近平总书记讲党史故事2222', 14, '第五教室', '2025-11-11 00:00:00', '2025-12-31 00:00:00', 2, 3, 0, 1, NULL, '1', '2025-11-14 17:50:29', NULL, NULL); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 1, 24, '中国精神001', 14, '第5教室', '2025-11-20 00:00:00', '2025-12-27 00:00:00', 1, 3, 0, 1, NULL, '1', '2025-11-21 15:22:06', '1', '2025-11-21 15:47:38'); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 17, 25, '改革开放四十周年成就展', 33, '908宿舍楼', '2025-11-20 00:00:00', '2025-11-30 00:00:00', 1, 3, 0, 1, NULL, '123', '2025-11-21 17:19:56', '123', '2025-11-21 17:21:02'); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (10, 21, 35, '中硕大学第一课', 37, '', '2025-11-01 00:00:00', '2025-12-31 00:00:00', 1, 3, 0, 1, NULL, '133', '2025-11-28 16:42:06', NULL, NULL); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (11, 21, 36, '中硕大学第2课', 37, '', '2025-11-01 00:00:00', '2025-12-31 00:00:00', 1, 3, 0, 1, NULL, '133', '2025-11-28 16:44:26', NULL, NULL); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (12, 21, 37, '中硕大学第三课', 37, '', '2025-12-02 00:00:00', '2025-12-31 00:00:00', 1, 3, 0, 1, NULL, '133', '2025-11-28 17:00:37', NULL, NULL); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (13, 17, 38, '中硕大学第一个课程', 33, 'wewwer是的地方士大夫', '2025-12-01 00:00:00', '2025-12-02 00:00:00', 1, 3, 0, 1, NULL, '123', '2025-12-01 17:10:14', NULL, NULL); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (14, 17, 39, '中国精神', 33, 'sfdfsdf', '2025-12-06 00:00:00', '2025-12-10 00:00:00', 1, 3, 0, 1, NULL, '123', '2025-12-08 11:17:39', NULL, NULL); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (15, 1, 40, '中国精神009', 14, 'test', '2026-01-01 00:00:00', '2026-03-31 00:00:00', 1, 1, 0, 1, NULL, '1', '2025-12-10 10:47:49', NULL, NULL); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (16, 1, 42, '中国精神009', 14, 'gaga', '2026-01-01 00:00:00', '2026-03-31 00:00:00', 1, 1, 0, 1, NULL, '110', '2025-12-10 15:55:52', NULL, NULL); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (17, 17, 43, '改革开放四十周年成就展', 33, 'asdfsadf', '2025-12-01 00:00:00', '2026-01-31 00:00:00', 1, 1, 0, 1, NULL, '123', '2025-12-10 18:11:51', NULL, NULL); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (18, 17, 44, '中国精神', 33, 'asdfasdf', '2025-12-08 00:00:00', '2026-01-11 00:00:00', 1, 3, 0, 1, NULL, '123', '2025-12-11 09:57:59', NULL, NULL); INSERT INTO `base_class_sch` (`id`, `sch_id`, `course_id`, `course_name`, `academic_id`, `address`, `start_date`, `end_date`, `class_type`, `status`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (19, 1, 46, '改革开放四十周年成就展002', 14, 'scdads', '2025-12-02 00:00:00', '2026-03-28 00:00:00', 1, 1, 0, 1, NULL, '1', '2026-01-16 15:22:25', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_class_sch_org -- ---------------------------- DROP TABLE IF EXISTS `base_class_sch_org`; CREATE TABLE `base_class_sch_org` ( `id` bigint NOT NULL AUTO_INCREMENT, `class_sch_id` bigint DEFAULT NULL COMMENT '上课ID', `org_id` bigint DEFAULT NULL COMMENT '班级ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='上课-班级信息'; -- ---------------------------- -- Records of base_class_sch_org -- ---------------------------- BEGIN; INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (9, 5, 5); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (10, 5, 6); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (11, 5, 8); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (12, 5, 9); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (17, 4, 5); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (22, 7, 5); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (23, 7, 6); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (24, 7, 8); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (25, 7, 9); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (27, 8, 25); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (29, 10, 30); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (30, 11, 30); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (31, 12, 30); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (32, 13, 25); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (33, 13, 26); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (34, 14, 25); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (35, 15, 5); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (36, 15, 6); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (37, 15, 8); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (38, 15, 9); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (39, 16, 5); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (40, 16, 6); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (41, 16, 8); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (42, 16, 9); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (43, 17, 25); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (44, 18, 26); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (45, 19, 5); INSERT INTO `base_class_sch_org` (`id`, `class_sch_id`, `org_id`) VALUES (46, 19, 6); COMMIT; -- ---------------------------- -- Table structure for base_class_sch_teacher -- ---------------------------- DROP TABLE IF EXISTS `base_class_sch_teacher`; CREATE TABLE `base_class_sch_teacher` ( `id` bigint NOT NULL AUTO_INCREMENT, `class_sch_id` bigint DEFAULT NULL COMMENT '上课ID', `user_id` bigint DEFAULT NULL COMMENT '老师ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='上课-老师信息'; -- ---------------------------- -- Records of base_class_sch_teacher -- ---------------------------- BEGIN; INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (9, 5, 2); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (10, 5, 117); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (11, 5, 116); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (12, 5, 115); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (13, 5, 114); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (14, 5, 113); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (15, 5, 110); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (19, 4, 2); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (30, 7, 125); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (31, 7, 113); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (32, 7, 114); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (33, 7, 115); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (34, 7, 116); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (35, 7, 117); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (36, 7, 119); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (37, 7, 110); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (38, 7, 2); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (39, 7, 124); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (42, 8, 2); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (43, 8, 126); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (45, 10, 134); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (46, 11, 134); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (47, 12, 134); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (48, 13, 126); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (49, 14, 126); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (50, 15, 2); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (51, 15, 110); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (52, 15, 115); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (53, 15, 116); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (54, 15, 125); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (55, 15, 137); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (56, 16, 2); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (57, 16, 110); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (58, 16, 115); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (59, 16, 116); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (60, 16, 125); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (61, 16, 137); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (62, 17, 127); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (63, 18, 127); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (64, 19, 2); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (65, 19, 115); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (66, 19, 116); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (67, 19, 125); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (68, 19, 137); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (69, 19, 141); INSERT INTO `base_class_sch_teacher` (`id`, `class_sch_id`, `user_id`) VALUES (70, 19, 144); COMMIT; -- ---------------------------- -- Table structure for base_class_sch_week -- ---------------------------- DROP TABLE IF EXISTS `base_class_sch_week`; CREATE TABLE `base_class_sch_week` ( `id` bigint NOT NULL AUTO_INCREMENT, `class_sch_id` bigint DEFAULT NULL COMMENT '上课ID', `week_info` int DEFAULT NULL COMMENT '周几1-周一2-周二', `start_time` time DEFAULT NULL COMMENT '开始时间', `end_time` time DEFAULT NULL COMMENT '结束时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='上课-周几信息\n'; -- ---------------------------- -- Records of base_class_sch_week -- ---------------------------- BEGIN; INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (6, 5, 2, '09:00:00', '12:00:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (7, 5, 4, '09:00:00', '11:30:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (13, 4, 1, '09:30:00', '11:00:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (14, 4, 5, '16:00:00', '17:30:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (16, 7, 1, '08:30:00', '22:30:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (19, 8, 1, '02:00:00', '03:30:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (20, 8, 2, '14:00:00', '15:00:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (21, 7, 2, '06:28:51', '22:28:58'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (24, 10, 1, '10:00:00', '12:00:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (25, 10, 5, '16:50:00', '18:50:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (26, 11, 1, '10:00:00', '12:00:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (27, 11, 2, '14:00:00', '16:00:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (28, 12, 1, '12:00:00', '14:00:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (29, 13, 1, '17:12:00', '17:20:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (30, 14, 1, '10:16:00', '12:16:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (31, 15, 1, '10:50:00', '12:50:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (32, 16, 1, '15:44:00', '18:45:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (33, 17, 1, '09:10:00', '10:10:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (34, 17, 4, '09:10:00', '10:10:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (35, 18, 1, '09:00:00', '10:00:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (36, 18, 2, '09:00:00', '10:00:00'); INSERT INTO `base_class_sch_week` (`id`, `class_sch_id`, `week_info`, `start_time`, `end_time`) VALUES (37, 19, 1, '08:21:00', '20:21:00'); COMMIT; -- ---------------------------- -- Table structure for base_course -- ---------------------------- DROP TABLE IF EXISTS `base_course`; CREATE TABLE `base_course` ( `id` bigint NOT NULL AUTO_INCREMENT, `school_id` bigint DEFAULT NULL COMMENT '学校ID', `ref_id` bigint DEFAULT NULL COMMENT '复制课程ID', `cover_url` varchar(255) DEFAULT NULL COMMENT '课程封面', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '课程名称', `label` varchar(255) DEFAULT NULL COMMENT '标签', `course_desc` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '课程简介', `course_type` varchar(20) DEFAULT NULL COMMENT '精品示范课程 1.精品资源,2.精品课程,3示范资源,4.示范课程', `resource` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '资源文件', `is_use` int DEFAULT '1' COMMENT '是否启用', `review_state` int DEFAULT '4' COMMENT '审核状态 1.待审核, 2.审核通过,3.驳回,4.草稿 ', `view_count` int DEFAULT '0' COMMENT '浏览次数', `course_state` int DEFAULT '1' COMMENT '课程类型 1.正本 2. 副本 ', `is_del` int DEFAULT '0', `state` int DEFAULT NULL, `remark` varchar(255) DEFAULT NULL, `create_by` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='课程信息'; -- ---------------------------- -- Records of base_course -- ---------------------------- BEGIN; INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, NULL, '/statics/2025/10/28/7_20251028181804A003.png', '改革开放四十周年成就展', '改革开放,思政教学', '

新华社北京11月13日电 在庆祝改革开放40周年之际,中共中央总书记、国家主席、中央军委主席习近平13日前往国家博物馆,参观“伟大的变革——庆祝改革开放40周年大型展览”。他强调,改革开放40年来,在中国共产党坚强领导下,中国人民艰苦奋斗、顽强拼搏,用双手书写了国家和民族发展的壮丽史诗,中华大地发生了感天动地的伟大变革。党的十九大描绘了中国发展的宏伟蓝图,只要我们坚持以新时代中国特色社会主义思想为指导,全面贯彻落实党中央决策部署,坚定不移全面深化改革、扩大对外开放,中国特色社会主义一定会迎来更加美好的明天。要通过展览,教育引导广大干部群众更加深刻地认识到中国共产党、中国人民和中国特色社会主义的伟大力量,更加深刻地认识到我们党的理论是正确的、党中央确定的改革开放路线方针是正确的、改革开放的一系列战略部署是正确的,更加深刻地认识到改革开放和社会主义现代化建设的光明前景,统一思想、凝聚共识、鼓舞斗志、团结奋斗,坚定跟党走中国特色社会主义道路、改革开放道路的信心和决心。

', '1,2', '[{\"name\":\"33_20251026230028A003.zip\",\"url\":\"/statics/2025/10/26/33_20251026230028A003.zip\",\"size\":530031,\"uid\":1761490828153,\"status\":\"success\"}]', 1, 2, 54, 1, 0, NULL, NULL, '1', '2025-10-26 23:00:32', NULL, '2025-10-29 09:15:06'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 1, NULL, '/statics/2025/10/28/8_20251028181815A004.png', '习近平总书记讲党史故事', '二十大精神 理论教学', '

《总书记讲党史故事》大型党史系列动画片以习近平总书记讲述过的许多感人至深的党史故事,党史中蕴含的智慧和力量为内容主线,运用图文条漫、动画视频等形式创新讲述故事。深入发掘故事中的核心思想理念,积极引领广大党员、干部加强学习,不断提高自己、丰富自己,提高工作水平和质量,把握历史规律,更加坚定走好中国道路、实现中华民族伟大复兴的信心和决心,奋进新征程、建功新时代。

', '1,2', '[{\"name\":\"1_20251027114336A005.zip\",\"url\":\"/statics/2025/10/27/1_20251027114336A005.zip\",\"size\":978686,\"uid\":1761536616472,\"status\":\"success\"}]', 1, 2, 5, 1, 0, NULL, NULL, '1', '2025-10-27 11:43:39', NULL, '2025-11-13 09:22:58'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, NULL, '/statics/2025/10/28/6_20251028181826A005.png', '中国精神', '二十大精神,理论教学', '

实现中华民族伟大复兴的中国梦,必须弘扬中国精神,这就是以爱国主义为核心的民族精神和以改革创新为核心的时代精神。中国精神贯穿于中华民族五千年历史、积蕴于近现代中华民族复兴历程,特别是在中国的快速崛起中迸发出来的具有很强的民族集聚、动员与感召效应的精神及其气象,是中国文化软实力的重要显示。

习近平总书记在第十二届全国人民代表大会第一次会议上指出,中国精神是凝心聚力的兴国之魂、强国之魂。爱国主义始终是把中华民族坚强团结在一起的精神力量,改革创新始终是鞭策我们在改革开放中与时俱进的精神力量。 [1] 2015年1月19日,从中央政府门户网站了解到,教育部发布的《中等职业学校德育大纲(2014年修订)》把中国精神教育纳入其中。要求加强以爱国主义为核心的民族精神教育,加强以改革创新为核心的时代精神教育,加强中华优秀传统文化教育以及中共党史与国情教育。

', '1,2', '[{\"name\":\"1_20251027121102A008.zip\",\"url\":\"/statics/2025/10/27/1_20251027121102A008.zip\",\"size\":978686,\"uid\":1761538262243,\"status\":\"success\"}]', 1, 2, 22, 1, 0, NULL, NULL, '1', '2025-10-27 12:11:04', NULL, '2025-11-13 09:23:03'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, 1, NULL, '/statics/2025/10/27/5_20251027150209A001.png', '中国近现代史纲要', '二十大精神,理论教学', '


“中国近现代史纲要”是全国高等学校本科生必修的一门思想政治理论课,这门课程兼备思想政治理论课和历史课的特点,主要讲授中国近代以来抵御外来侵略、争取民族独立、推翻反动统治、实现人民解放以及将中国由落后的农业国改变为先进的工业国,实现国家繁荣富强和人民共同富裕的历史,与“马克思主义基本原理概论”“毛泽东思想和中国特色社会主义理论体系概论““思想道德与法治”“形势与政策”共同构成了高校思想政治理论课的课程体系,是对大学生进行思想政治理论教育的主渠道和重要阵地。

本课程教材自2007年出版以来,为了更及时、更充分地反映党的理论创新和实践创新成果,中宣部、教育部组织教材编写课题组在广泛调研的基础上,分别于2008年1月、2009年6月、2010年5月、2013年7月、2015年8月、2018年3月、2021年8月组织了7次修订。2022年10月,为了进一步推动习近平新时代中国特色社会主义思想进教材、进课堂、进头脑,贯彻落实党的二十大和十九届六中全会精神,中宣部、教育部组织对教材进行了修订,形成了最新的2023年2月修订版本。


本课程的开设,主要是帮助大学生认识近现代中国社会发展和革命、建设、改革的历史进程及其内在的规律性,深刻领会历史和人民怎样选择了马克思主义、怎样选择了中国共产党、怎样选择了社会主义道路、选择了改革开放,深刻领会中国共产党为什么能、马克思主义为什么行、中国特色社会主义为什么好,更加坚定地在中国共产党坚强领导下为实现中华民族伟大复兴而不懈奋斗。它为大学生学习“毛泽东思想和中国特色社会主义理论体系概论”等后续思想政治理论课奠定历史知识的基础,也为大学生学好各门专业知识,肩负起建设祖国的责任,奠定思想政治的基础。


本课程的教学理念一是坚持马克思主义基本观点教育与把握时代特征相统一,加强思想政治方向引导的有效性;二是明确中国近现代历史的主题、主线,厘清中国近现代历史的发展脉络,强化“四个选择”教育的针对性;三是运用科学的历史观和方法论分析和评价历史问题,提高学生辨别历史是非和社会发展方向的能力,增强教学的实践性;四是倡导开放互动的教学方式与合作探究的学习方式,建立注重学习过程和学生发展的评价标准,力求体现以学生发展为本的价值观。


根据扬州大学新修订的人才培养方案,本课程属于学科专业教育中的通识教育课程模块,并属于通识教育课程模块中的思想政治系列的一门必修课程,思想政治系列课程主要执行教育部新颁思想政治理论课教学方案。

', '', '[{\"name\":\"1_20251027150329A002.zip\",\"url\":\"/statics/2025/10/27/1_20251027150329A002.zip\",\"size\":978686,\"uid\":1761548609462,\"status\":\"success\"}]', 1, 2, 0, 1, 0, NULL, NULL, '2', '2025-10-27 15:03:31', NULL, '2025-10-27 15:22:36'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 1, NULL, '/statics/2025/10/28/4_20251028182006A006.jpg', '马克思主义基本原理', '二十大精神,理论教学', '

1. 什么是马克思主义
1、从创造者、继承者的角度讲,马克思主义是由马克思恩格斯创立的,而由其后各个时代、各个民族的马克思主义者不断丰富和发展的观点和学说的体系。
2、从阶级属性讲,马克思主义是无产阶级争取自身解放和整个人类解放的科学理论,是关于无产阶级斗争的性质、目的和解放条件的学说。
3、从研究对象和主要容讲,马克思主义是无产阶级的科学世界观和方法论,是关于自然、社会和思维发展普遍规律的学说,是关于资本主义发展和转变为社会主义以及社会主义共产主义发展普遍规律的科学。

2.马克思主义的产生与发展
(一)马克思主义是时代的产

1.马克思主义产生的经济社会根源
资本主义大工业的发展,资本主义生产方式的成熟和基本矛盾的发展,是马克思主义产生的最根本的经济社会根源。
(1) 工业革命引起生产方式重大变革
(2) 周期性经济危机爆发
(3) 资本主义基本矛盾尖锐化

', '1,2', '[{\"name\":\"1_20251027150658A004.zip\",\"url\":\"/statics/2025/10/27/1_20251027150658A004.zip\",\"size\":978686,\"uid\":1761548818197,\"status\":\"success\"}]', 1, 3, 13, 1, 0, NULL, NULL, '2', '2025-10-27 15:12:16', NULL, '2025-10-28 18:20:09'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 1, NULL, '/statics/2025/10/27/33_20251027153343A005.png', '222222', '1,2', '

3333

', '1', '[{\"name\":\"1_20251027153356A006.zip\",\"url\":\"/statics/2025/10/27/1_20251027153356A006.zip\",\"size\":978686,\"uid\":1761550436555,\"status\":\"success\"}]', 1, 3, 1, 1, 0, NULL, NULL, '2', '2025-10-27 15:33:59', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (9, 1, NULL, '/statics/2025/11/01/281b57ff8759a5cc9bd0802be68e00e9_20251101234505A007.png', '改革开放四十周年成就展', '', '

111

', '', '[{\"name\":\"《草船借箭》电子板贴_20251101234738A008.pptx\",\"url\":\"/statics/2025/11/01/《草船借箭》电子板贴_20251101234738A008.pptx\",\"size\":569676,\"uid\":1762012058456,\"status\":\"success\"}]', 1, 2, 5, 1, 0, NULL, NULL, '1', '2025-11-01 23:47:41', NULL, '2025-11-13 09:23:11'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (10, 1, NULL, NULL, '测试课程', NULL, NULL, '1', NULL, 1, 4, 1, 1, 0, NULL, NULL, '1', NULL, NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (11, 2, NULL, '/statics/2025/11/13/quanjing_20251113092106A001.jpg', '我的测试课程', '测试01', '

测试01

', '1,2,3,4', '[]', 1, 1, 1, 1, 0, NULL, NULL, '101', '2025-11-13 09:21:09', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (12, 2, NULL, '/statics/2025/11/13/PixPin_2025-11-03_16-37-43_20251113092138A002.png', '测试二', '测试二', '

测试二

', '1,2,3', '[]', 1, 3, 2, 1, 0, NULL, NULL, '101', '2025-11-13 09:21:41', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (13, 2, NULL, '/statics/2025/11/13/3_20251113092222A003.png', '测试三', '测试三', '

测试三

', '1,2,4', '[]', 1, 4, 0, 1, 0, NULL, NULL, '101', '2025-11-13 09:22:24', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (14, 2, NULL, '/statics/2025/11/13/1_20251113101659A001.png', '我的测试4', '我的测试4', '

我的测试4

', '2', '[]', 1, 2, 0, 1, 0, NULL, NULL, '101', '2025-11-13 10:17:17', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (15, 2, NULL, '/statics/2025/11/13/2_20251113101729A002.png', '我的测试5', '我的测试5', '

我的测试5

', '1,2,4', '[]', 1, 3, 8, 1, 0, NULL, NULL, '101', '2025-11-13 10:17:34', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (20, 1, 3, '/statics/2025/10/28/7_20251028181804A003.png', '改革开放四十周年成就展123', '改革开放,思政教学', '

新华社北京11月13日电 在庆祝改革开放40周年之际,中共中央总书记、国家主席、中央军委主席习近平13日前往国家博物馆,参观“伟大的变革——庆祝改革开放40周年大型展览”。他强调,改革开放40年来,在中国共产党坚强领导下,中国人民艰苦奋斗、顽强拼搏,用双手书写了国家和民族发展的壮丽史诗,中华大地发生了感天动地的伟大变革。党的十九大描绘了中国发展的宏伟蓝图,只要我们坚持以新时代中国特色社会主义思想为指导,全面贯彻落实党中央决策部署,坚定不移全面深化改革、扩大对外开放,中国特色社会主义一定会迎来更加美好的明天。要通过展览,教育引导广大干部群众更加深刻地认识到中国共产党、中国人民和中国特色社会主义的伟大力量,更加深刻地认识到我们党的理论是正确的、党中央确定的改革开放路线方针是正确的、改革开放的一系列战略部署是正确的,更加深刻地认识到改革开放和社会主义现代化建设的光明前景,统一思想、凝聚共识、鼓舞斗志、团结奋斗,坚定跟党走中国特色社会主义道路、改革开放道路的信心和决心。

', '1,2', '[{\"name\":\"33_20251026230028A003.zip\",\"url\":\"/statics/2025/10/26/33_20251026230028A003.zip\",\"size\":530031,\"uid\":1761490828153,\"status\":\"success\"}]', 1, 2, 17, 2, 0, 1, NULL, '1', '2025-11-14 16:46:00', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (21, 1, 4, '/statics/2025/10/28/8_20251028181815A004.png', '习近平总书记讲党史故事2222', '二十大精神 理论教学', '

《总书记讲党史故事》大型党史系列动画片以习近平总书记讲述过的许多感人至深的党史故事,党史中蕴含的智慧和力量为内容主线,运用图文条漫、动画视频等形式创新讲述故事。深入发掘故事中的核心思想理念,积极引领广大党员、干部加强学习,不断提高自己、丰富自己,提高工作水平和质量,把握历史规律,更加坚定走好中国道路、实现中华民族伟大复兴的信心和决心,奋进新征程、建功新时代。

', '1,2', '[{\"name\":\"1_20251027114336A005.zip\",\"url\":\"/statics/2025/10/27/1_20251027114336A005.zip\",\"size\":978686,\"uid\":1761536616472,\"status\":\"success\"}]', 1, 2, 14, 2, 0, 1, NULL, '1', '2025-11-14 17:50:28', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (23, 17, NULL, '/statics/2025/11/20/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251120113327A002.png', '测试课程55555', '不不不', '

撒旦发射点发射点

', '1,2', '[{\"name\":\"课间每日一考题英语练习_20251120113359A003.pdf\",\"url\":\"/statics/2025/11/20/课间每日一考题英语练习_20251120113359A003.pdf\",\"originalName\":null,\"size\":19353929,\"metadata\":null,\"uid\":1763609638839,\"status\":\"success\"}]', 1, 2, 12, 1, 0, NULL, NULL, '123', '2025-11-20 11:34:04', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (24, 1, 5, '/statics/2025/10/28/6_20251028181826A005.png', '中国精神001', '二十大精神,理论教学', '

实现中华民族伟大复兴的中国梦,必须弘扬中国精神,这就是以爱国主义为核心的民族精神和以改革创新为核心的时代精神。中国精神贯穿于中华民族五千年历史、积蕴于近现代中华民族复兴历程,特别是在中国的快速崛起中迸发出来的具有很强的民族集聚、动员与感召效应的精神及其气象,是中国文化软实力的重要显示。

习近平总书记在第十二届全国人民代表大会第一次会议上指出,中国精神是凝心聚力的兴国之魂、强国之魂。爱国主义始终是把中华民族坚强团结在一起的精神力量,改革创新始终是鞭策我们在改革开放中与时俱进的精神力量。 [1] 2015年1月19日,从中央政府门户网站了解到,教育部发布的《中等职业学校德育大纲(2014年修订)》把中国精神教育纳入其中。要求加强以爱国主义为核心的民族精神教育,加强以改革创新为核心的时代精神教育,加强中华优秀传统文化教育以及中共党史与国情教育。

', '1,2', '[{\"name\":\"【邓超龙】马克思主义的诞生与传播.mp4 | 砺儒云课堂_20251125101115A001.mp4\",\"url\":\"/statics/2025/11/25/【邓超龙】马克思主义的诞生与传播.mp4 | 砺儒云课堂_20251125101115A001.mp4\",\"originalName\":null,\"size\":87670710,\"metadata\":null,\"uid\":1764036675806,\"status\":\"success\"},{\"name\":\"中硕思政-需求说明书(4)_20251125101336A002.pdf\",\"url\":\"/statics/2025/11/25/中硕思政-需求说明书(4)_20251125101336A002.pdf\",\"originalName\":null,\"size\":5290893,\"metadata\":null,\"uid\":1764036816440,\"status\":\"success\"}]', 1, 2, 27, 2, 0, 1, NULL, '1', '2025-11-21 15:21:58', NULL, '2025-11-25 10:13:40'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (25, 1, 9, '/statics/2025/11/01/281b57ff8759a5cc9bd0802be68e00e9_20251101234505A007.png', '改革开放四十周年成就展', '', '

111

', '', '[{\"name\":\"《草船借箭》电子板贴_20251101234738A008.pptx\",\"url\":\"/statics/2025/11/01/《草船借箭》电子板贴_20251101234738A008.pptx\",\"size\":569676,\"uid\":1762012058456,\"status\":\"success\"}]', 1, 2, 0, 2, 0, 1, NULL, '123', '2025-11-21 17:19:56', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (26, 1, NULL, '/statics/2025/11/26/生成图片 (3)_20251126163700A030.png', '我的测试课程', '新中国成立,党的二十大', '

      十分士大夫撒旦发射点发射点士大夫士大夫士大夫撒旦士大夫撒旦发射点发射点发生手动阀手动阀

士大夫士大夫胜多负少

', '1', '[{\"name\":\"会议预约解决方案(1)_20251126163852A031.pptx\",\"url\":\"/statics/2025/11/26/会议预约解决方案(1)_20251126163852A031.pptx\",\"originalName\":null,\"size\":47392907,\"metadata\":null,\"uid\":1764146334051,\"status\":\"success\"},{\"name\":\"格式工厂 屏幕录像20251010_174654_20251126163922A032.mp4\",\"url\":\"/statics/2025/11/26/格式工厂 屏幕录像20251010_174654_20251126163922A032.mp4\",\"originalName\":null,\"size\":2976273,\"metadata\":null,\"uid\":1764146363237,\"status\":\"success\"}]', 1, 2, 9, 1, 0, NULL, NULL, '1', '2025-11-26 16:40:20', NULL, '2025-11-27 11:18:09'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (27, 17, NULL, '/statics/2025/11/27/微信图片_20241217162528_20251127001345A039.png', '工人阶级的最终归宿', '士大夫 所发生的', '

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

', '1', '[{\"name\":\"数字孪生+工程建设安全管理系统_20251127001514A040.pptx\",\"url\":\"/statics/2025/11/27/数字孪生+工程建设安全管理系统_20251127001514A040.pptx\",\"originalName\":null,\"size\":22526704,\"metadata\":null,\"uid\":1764173715023,\"status\":\"success\"}]', 1, 2, 3, 1, 0, NULL, NULL, '123', '2025-11-27 00:15:20', NULL, '2025-11-27 00:17:26'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (28, 17, NULL, '/statics/2025/11/27/微信图片_20241217162528_20251127001815A041.png', '工人的最终归宿2', '', '

工人的最终归宿2工人的最终归宿2工人的最终归宿2

', '', '[]', 1, 2, 0, 1, 0, NULL, NULL, '123', '2025-11-27 00:18:26', NULL, '2025-11-27 00:18:55'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (29, 17, NULL, '/statics/2025/11/27/微信图片_20241217162528_20251127001921A042.png', '工人的最终归宿3', '', '

工人的最终归宿3工人的最终归宿3工人的最终归宿3工人的最终归宿3工人的最终归宿3

', '', '[]', 1, 4, 0, 1, 0, NULL, NULL, '123', '2025-11-27 00:19:32', NULL, '2025-11-27 10:09:37'); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (30, 17, NULL, '/statics/2025/11/27/微信图片_20241217162528_20251127001921A042.png', '工人的最终归宿3', '', '

工人的最终归宿3工人的最终归宿3工人的最终归宿3工人的最终归宿3工人的最终归宿3

', '', '[]', 1, 4, 0, 1, 0, NULL, NULL, '123', '2025-11-27 00:19:36', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (31, 17, NULL, '/statics/2025/11/27/ScreenShot_2025-11-10_174528_772_20251127102111A043.png', '老百姓的生活还好吗', '', '

老百姓的生活还好吗老百姓的生活还好吗老百姓的生活还好吗老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

', '', '[]', 1, 2, 2, 1, 0, NULL, NULL, '127', '2025-11-27 10:21:16', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (32, 1, NULL, '/statics/2025/11/27/生成图片 (9)_20251127112405A044.png', '我的测试课程2', '新中国成立', '

22222

', '', '[{\"name\":\"格式工厂 屏幕录像20251120_100120_20251127112613A045.mp4\",\"url\":\"/statics/2025/11/27/格式工厂 屏幕录像20251120_100120_20251127112613A045.mp4\",\"originalName\":null,\"size\":218700034,\"metadata\":null,\"uid\":1764213977365,\"status\":\"success\"},{\"name\":\"狮子王AI校园防霸凌解决方案(1)_20251127112704A046.pdf\",\"url\":\"/statics/2025/11/27/狮子王AI校园防霸凌解决方案(1)_20251127112704A046.pdf\",\"originalName\":null,\"size\":4164766,\"metadata\":null,\"uid\":1764214027944,\"status\":\"success\"}]', 1, 2, 11, 1, 0, NULL, NULL, '1', '2025-11-27 11:27:08', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (33, 21, NULL, '/statics/2025/11/28/生成图片 (10)_20251128154552A017.png', '中硕大学第一个课程', '新中国成立', '

本章旨在引导学生思考人生的意义与价值,树立正确的人生观和价值观,把握青春的航向,为实现人生理想奠定基础。

', '1,2', '[{\"name\":\"4-7-8_20251128154628A018.mp4\",\"url\":\"/statics/2025/11/28/4-7-8_20251128154628A018.mp4\",\"originalName\":null,\"size\":6682679,\"metadata\":null,\"uid\":1764315988628,\"status\":\"success\"},{\"name\":\"狮子王AI校园防霸凌解决方案(1)_20251128154736A020.pdf\",\"url\":\"/statics/2025/11/28/狮子王AI校园防霸凌解决方案(1)_20251128154736A020.pdf\",\"originalName\":null,\"size\":4164766,\"metadata\":null,\"uid\":1764316057322,\"status\":\"success\"}]', 1, 2, 1, 1, 0, NULL, NULL, '133', '2025-11-28 15:48:08', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (35, 1, 32, '/statics/2025/11/27/生成图片 (9)_20251127112405A044.png', '中硕大学第一课', '新中国成立', '

22222

', '', '[{\"name\":\"格式工厂 屏幕录像20251120_100120_20251127112613A045.mp4\",\"url\":\"/statics/2025/11/27/格式工厂 屏幕录像20251120_100120_20251127112613A045.mp4\",\"originalName\":null,\"size\":218700034,\"metadata\":null,\"uid\":1764213977365,\"status\":\"success\"},{\"name\":\"狮子王AI校园防霸凌解决方案(1)_20251127112704A046.pdf\",\"url\":\"/statics/2025/11/27/狮子王AI校园防霸凌解决方案(1)_20251127112704A046.pdf\",\"originalName\":null,\"size\":4164766,\"metadata\":null,\"uid\":1764214027944,\"status\":\"success\"}]', 1, 2, 1, 2, 0, 1, NULL, '133', '2025-11-28 16:42:04', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (36, 1, 32, '/statics/2025/11/27/生成图片 (9)_20251127112405A044.png', '中硕大学第2课', '新中国成立', '

22222

', '', '[{\"name\":\"格式工厂 屏幕录像20251120_100120_20251127112613A045.mp4\",\"url\":\"/statics/2025/11/27/格式工厂 屏幕录像20251120_100120_20251127112613A045.mp4\",\"originalName\":null,\"size\":218700034,\"metadata\":null,\"uid\":1764213977365,\"status\":\"success\"},{\"name\":\"狮子王AI校园防霸凌解决方案(1)_20251127112704A046.pdf\",\"url\":\"/statics/2025/11/27/狮子王AI校园防霸凌解决方案(1)_20251127112704A046.pdf\",\"originalName\":null,\"size\":4164766,\"metadata\":null,\"uid\":1764214027944,\"status\":\"success\"}]', 1, 2, 0, 2, 0, 1, NULL, '133', '2025-11-28 16:44:24', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (37, 1, 32, '/statics/2025/11/27/生成图片 (9)_20251127112405A044.png', '中硕大学第三课', '新中国成立', '

22222

', '', '[{\"name\":\"格式工厂 屏幕录像20251120_100120_20251127112613A045.mp4\",\"url\":\"/statics/2025/11/27/格式工厂 屏幕录像20251120_100120_20251127112613A045.mp4\",\"originalName\":null,\"size\":218700034,\"metadata\":null,\"uid\":1764213977365,\"status\":\"success\"},{\"name\":\"狮子王AI校园防霸凌解决方案(1)_20251127112704A046.pdf\",\"url\":\"/statics/2025/11/27/狮子王AI校园防霸凌解决方案(1)_20251127112704A046.pdf\",\"originalName\":null,\"size\":4164766,\"metadata\":null,\"uid\":1764214027944,\"status\":\"success\"}]', 1, 2, 0, 2, 0, 1, NULL, '133', '2025-11-28 17:00:36', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (38, 21, 33, '/statics/2025/11/28/生成图片 (10)_20251128154552A017.png', '中硕大学第一个课程', '新中国成立', '

本章旨在引导学生思考人生的意义与价值,树立正确的人生观和价值观,把握青春的航向,为实现人生理想奠定基础。

', '1,2', '[{\"name\":\"4-7-8_20251128154628A018.mp4\",\"url\":\"/statics/2025/11/28/4-7-8_20251128154628A018.mp4\",\"originalName\":null,\"size\":6682679,\"metadata\":null,\"uid\":1764315988628,\"status\":\"success\"},{\"name\":\"狮子王AI校园防霸凌解决方案(1)_20251128154736A020.pdf\",\"url\":\"/statics/2025/11/28/狮子王AI校园防霸凌解决方案(1)_20251128154736A020.pdf\",\"originalName\":null,\"size\":4164766,\"metadata\":null,\"uid\":1764316057322,\"status\":\"success\"}]', 1, 2, 3, 2, 0, 1, NULL, '123', '2025-12-01 17:10:14', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (39, 1, 5, '/statics/2025/10/28/6_20251028181826A005.png', '中国精神', '二十大精神,理论教学', '

实现中华民族伟大复兴的中国梦,必须弘扬中国精神,这就是以爱国主义为核心的民族精神和以改革创新为核心的时代精神。中国精神贯穿于中华民族五千年历史、积蕴于近现代中华民族复兴历程,特别是在中国的快速崛起中迸发出来的具有很强的民族集聚、动员与感召效应的精神及其气象,是中国文化软实力的重要显示。

习近平总书记在第十二届全国人民代表大会第一次会议上指出,中国精神是凝心聚力的兴国之魂、强国之魂。爱国主义始终是把中华民族坚强团结在一起的精神力量,改革创新始终是鞭策我们在改革开放中与时俱进的精神力量。 [1] 2015年1月19日,从中央政府门户网站了解到,教育部发布的《中等职业学校德育大纲(2014年修订)》把中国精神教育纳入其中。要求加强以爱国主义为核心的民族精神教育,加强以改革创新为核心的时代精神教育,加强中华优秀传统文化教育以及中共党史与国情教育。

', '1,2', '[{\"name\":\"1_20251027121102A008.zip\",\"url\":\"/statics/2025/10/27/1_20251027121102A008.zip\",\"size\":978686,\"uid\":1761538262243,\"status\":\"success\"}]', 1, 2, 0, 2, 0, 1, NULL, '123', '2025-12-08 11:17:30', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (40, 1, 5, '/statics/2025/10/28/6_20251028181826A005.png', '中国精神009', '二十大精神,理论教学', '

实现中华民族伟大复兴的中国梦,必须弘扬中国精神,这就是以爱国主义为核心的民族精神和以改革创新为核心的时代精神。中国精神贯穿于中华民族五千年历史、积蕴于近现代中华民族复兴历程,特别是在中国的快速崛起中迸发出来的具有很强的民族集聚、动员与感召效应的精神及其气象,是中国文化软实力的重要显示。

习近平总书记在第十二届全国人民代表大会第一次会议上指出,中国精神是凝心聚力的兴国之魂、强国之魂。爱国主义始终是把中华民族坚强团结在一起的精神力量,改革创新始终是鞭策我们在改革开放中与时俱进的精神力量。 [1] 2015年1月19日,从中央政府门户网站了解到,教育部发布的《中等职业学校德育大纲(2014年修订)》把中国精神教育纳入其中。要求加强以爱国主义为核心的民族精神教育,加强以改革创新为核心的时代精神教育,加强中华优秀传统文化教育以及中共党史与国情教育。

', '1,2', '[{\"name\":\"1_20251027121102A008.zip\",\"url\":\"/statics/2025/10/27/1_20251027121102A008.zip\",\"size\":978686,\"uid\":1761538262243,\"status\":\"success\"}]', 1, 2, 1, 2, 0, 1, NULL, '1', '2025-12-10 10:47:39', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (41, 1, NULL, '/statics/2025/12/10/quanjing_20251210151603A001.jpg', '我的测试课程111', '测试01', '

2222

', '1,2,3,4', '[]', 1, 3, 1, 1, 0, NULL, NULL, '110', '2025-12-10 15:16:17', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (42, 1, 5, '/statics/2025/10/28/6_20251028181826A005.png', '中国精神009', '二十大精神,理论教学', '

实现中华民族伟大复兴的中国梦,必须弘扬中国精神,这就是以爱国主义为核心的民族精神和以改革创新为核心的时代精神。中国精神贯穿于中华民族五千年历史、积蕴于近现代中华民族复兴历程,特别是在中国的快速崛起中迸发出来的具有很强的民族集聚、动员与感召效应的精神及其气象,是中国文化软实力的重要显示。

习近平总书记在第十二届全国人民代表大会第一次会议上指出,中国精神是凝心聚力的兴国之魂、强国之魂。爱国主义始终是把中华民族坚强团结在一起的精神力量,改革创新始终是鞭策我们在改革开放中与时俱进的精神力量。 [1] 2015年1月19日,从中央政府门户网站了解到,教育部发布的《中等职业学校德育大纲(2014年修订)》把中国精神教育纳入其中。要求加强以爱国主义为核心的民族精神教育,加强以改革创新为核心的时代精神教育,加强中华优秀传统文化教育以及中共党史与国情教育。

', '1,2', '[{\"name\":\"1_20251027121102A008.zip\",\"url\":\"/statics/2025/10/27/1_20251027121102A008.zip\",\"size\":978686,\"uid\":1761538262243,\"status\":\"success\"}]', 1, 2, 1, 2, 0, 1, NULL, '110', '2025-12-10 15:55:42', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (43, 1, 3, '/statics/2025/10/28/7_20251028181804A003.png', '改革开放四十周年成就展', '改革开放,思政教学', '

新华社北京11月13日电 在庆祝改革开放40周年之际,中共中央总书记、国家主席、中央军委主席习近平13日前往国家博物馆,参观“伟大的变革——庆祝改革开放40周年大型展览”。他强调,改革开放40年来,在中国共产党坚强领导下,中国人民艰苦奋斗、顽强拼搏,用双手书写了国家和民族发展的壮丽史诗,中华大地发生了感天动地的伟大变革。党的十九大描绘了中国发展的宏伟蓝图,只要我们坚持以新时代中国特色社会主义思想为指导,全面贯彻落实党中央决策部署,坚定不移全面深化改革、扩大对外开放,中国特色社会主义一定会迎来更加美好的明天。要通过展览,教育引导广大干部群众更加深刻地认识到中国共产党、中国人民和中国特色社会主义的伟大力量,更加深刻地认识到我们党的理论是正确的、党中央确定的改革开放路线方针是正确的、改革开放的一系列战略部署是正确的,更加深刻地认识到改革开放和社会主义现代化建设的光明前景,统一思想、凝聚共识、鼓舞斗志、团结奋斗,坚定跟党走中国特色社会主义道路、改革开放道路的信心和决心。

', '1,2', '[{\"name\":\"33_20251026230028A003.zip\",\"url\":\"/statics/2025/10/26/33_20251026230028A003.zip\",\"size\":530031,\"uid\":1761490828153,\"status\":\"success\"}]', 1, 2, 3, 2, 0, 1, NULL, '123', '2025-12-10 18:11:48', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (44, 1, 5, '/statics/2025/10/28/6_20251028181826A005.png', '中国精神', '二十大精神,理论教学', '

实现中华民族伟大复兴的中国梦,必须弘扬中国精神,这就是以爱国主义为核心的民族精神和以改革创新为核心的时代精神。中国精神贯穿于中华民族五千年历史、积蕴于近现代中华民族复兴历程,特别是在中国的快速崛起中迸发出来的具有很强的民族集聚、动员与感召效应的精神及其气象,是中国文化软实力的重要显示。

习近平总书记在第十二届全国人民代表大会第一次会议上指出,中国精神是凝心聚力的兴国之魂、强国之魂。爱国主义始终是把中华民族坚强团结在一起的精神力量,改革创新始终是鞭策我们在改革开放中与时俱进的精神力量。 [1] 2015年1月19日,从中央政府门户网站了解到,教育部发布的《中等职业学校德育大纲(2014年修订)》把中国精神教育纳入其中。要求加强以爱国主义为核心的民族精神教育,加强以改革创新为核心的时代精神教育,加强中华优秀传统文化教育以及中共党史与国情教育。

', '1,2', '[{\"name\":\"1_20251027121102A008.zip\",\"url\":\"/statics/2025/10/27/1_20251027121102A008.zip\",\"size\":978686,\"uid\":1761538262243,\"status\":\"success\"}]', 1, 2, 1, 2, 0, 1, NULL, '123', '2025-12-11 09:57:49', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (45, 2, NULL, '/statics/2026/01/11/PixPin_2026-01-10_23-03-29_20260111214351A001.png', '11', '22', '

33

', '1', '[]', 1, 1, 0, 1, 0, NULL, NULL, '100', '2026-01-11 21:44:00', NULL, NULL); INSERT INTO `base_course` (`id`, `school_id`, `ref_id`, `cover_url`, `name`, `label`, `course_desc`, `course_type`, `resource`, `is_use`, `review_state`, `view_count`, `course_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (46, 1, 3, '/statics/2025/10/28/7_20251028181804A003.png', '改革开放四十周年成就展002', '改革开放,思政教学', '

新华社北京11月13日电 在庆祝改革开放40周年之际,中共中央总书记、国家主席、中央军委主席习近平13日前往国家博物馆,参观“伟大的变革——庆祝改革开放40周年大型展览”。他强调,改革开放40年来,在中国共产党坚强领导下,中国人民艰苦奋斗、顽强拼搏,用双手书写了国家和民族发展的壮丽史诗,中华大地发生了感天动地的伟大变革。党的十九大描绘了中国发展的宏伟蓝图,只要我们坚持以新时代中国特色社会主义思想为指导,全面贯彻落实党中央决策部署,坚定不移全面深化改革、扩大对外开放,中国特色社会主义一定会迎来更加美好的明天。要通过展览,教育引导广大干部群众更加深刻地认识到中国共产党、中国人民和中国特色社会主义的伟大力量,更加深刻地认识到我们党的理论是正确的、党中央确定的改革开放路线方针是正确的、改革开放的一系列战略部署是正确的,更加深刻地认识到改革开放和社会主义现代化建设的光明前景,统一思想、凝聚共识、鼓舞斗志、团结奋斗,坚定跟党走中国特色社会主义道路、改革开放道路的信心和决心。

', '1,2', '[{\"name\":\"33_20251026230028A003.zip\",\"url\":\"/statics/2025/10/26/33_20251026230028A003.zip\",\"size\":530031,\"uid\":1761490828153,\"status\":\"success\"}]', 1, 2, 3, 2, 0, 1, NULL, '1', '2026-01-16 15:22:20', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_course_review -- ---------------------------- DROP TABLE IF EXISTS `base_course_review`; CREATE TABLE `base_course_review` ( `id` bigint NOT NULL AUTO_INCREMENT, `coure_id` bigint DEFAULT NULL COMMENT '课程ID', `review_state` int DEFAULT NULL COMMENT '审核状态 1.驳回 2.通过', `review_desc` mediumtext COMMENT '审核说明', `is_del` int DEFAULT '0', `state` int DEFAULT NULL, `remark` varchar(255) DEFAULT NULL, `create_by` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='课程审核记录'; -- ---------------------------- -- Records of base_course_review -- ---------------------------- BEGIN; INSERT INTO `base_course_review` (`id`, `coure_id`, `review_state`, `review_desc`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 15, 1, 'XX999', 0, NULL, NULL, '1', '2025-11-13 10:22:20', NULL, NULL); INSERT INTO `base_course_review` (`id`, `coure_id`, `review_state`, `review_desc`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 15, 1, 'XX8888', 0, NULL, NULL, '1', '2025-11-13 10:22:25', NULL, NULL); INSERT INTO `base_course_review` (`id`, `coure_id`, `review_state`, `review_desc`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 12, 3, 'ggg', 0, NULL, NULL, '101', '2025-11-13 11:22:05', NULL, NULL); INSERT INTO `base_course_review` (`id`, `coure_id`, `review_state`, `review_desc`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 27, 3, '阿松大', 0, NULL, NULL, '123', '2025-11-27 00:16:27', NULL, NULL); INSERT INTO `base_course_review` (`id`, `coure_id`, `review_state`, `review_desc`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 28, 3, '试试飒', 0, NULL, NULL, '123', '2025-11-27 00:18:44', NULL, NULL); INSERT INTO `base_course_review` (`id`, `coure_id`, `review_state`, `review_desc`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, 31, 2, 'fdffff', 0, NULL, NULL, '123', '2025-11-27 10:28:30', NULL, NULL); INSERT INTO `base_course_review` (`id`, `coure_id`, `review_state`, `review_desc`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 8, 3, '不符合要求', 0, NULL, NULL, '1', '2025-11-27 11:17:03', NULL, NULL); INSERT INTO `base_course_review` (`id`, `coure_id`, `review_state`, `review_desc`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 7, 3, '不符合要求', 0, NULL, NULL, '1', '2025-11-27 11:17:03', NULL, NULL); INSERT INTO `base_course_review` (`id`, `coure_id`, `review_state`, `review_desc`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (9, 41, 3, '11111', 0, NULL, NULL, '110', '2025-12-10 15:16:53', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_exam_info -- ---------------------------- DROP TABLE IF EXISTS `base_exam_info`; CREATE TABLE `base_exam_info` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', `sch_id` int NOT NULL COMMENT '学校主键', `exam_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '试卷标题', `exam_course_id` int DEFAULT NULL COMMENT '关联课程', `exam_rank` int DEFAULT NULL COMMENT '试卷级别', `single_num` int DEFAULT NULL COMMENT '单选题数量', `single_mark` int DEFAULT NULL COMMENT '单选题分数', `multiple_num` int DEFAULT NULL COMMENT '多选题数量', `multiple_mark` int DEFAULT NULL COMMENT '多选题分数', `estimate_num` int DEFAULT NULL COMMENT '判断题数量', `estimate_mark` int DEFAULT NULL COMMENT '判断题分数', `full_mark` int DEFAULT '100' COMMENT '试卷分数', `pass_mark` int DEFAULT '100' COMMENT '通过分数', `use_number` int DEFAULT '0' COMMENT '答题次数', `status` int DEFAULT '0' COMMENT '试卷状态(0草稿、100发布)', `exam_time` int DEFAULT NULL COMMENT '考试时长', `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '修改人', `update_time` datetime DEFAULT NULL COMMENT '修改时间', `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), KEY `index_dept_id` (`sch_id`), KEY `idx_question_count` (`single_num`,`multiple_num`,`estimate_num`), KEY `idx_use_number` (`use_number`), KEY `idx_create_time` (`create_time`), KEY `idx_full_mark` (`full_mark`) ) ENGINE=InnoDB AUTO_INCREMENT=10031 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='基础试卷'; -- ---------------------------- -- Records of base_exam_info -- ---------------------------- BEGIN; INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 1, '统计专用试卷1', 3, 1, 2, 4, 2, 13, 2, 4, 100, 10, 4, 100, 120, '1', '2025-11-11 17:16:27', '1', '2025-11-11 17:17:07', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 1, '统计专用试卷2', 3, 1, 2, 4, 2, 13, 2, 4, 120, 10, 0, 100, 120, '1', '2025-11-11 17:16:27', '1', '2025-11-11 17:17:07', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 1, '统计专用试卷3', 3, 2, 2, 4, 2, 13, 2, 4, 100, 10, 0, 100, 120, '1', '2025-11-11 17:16:27', '1', '2025-11-11 17:17:07', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 1, '统计专用试卷4', 3, 2, 2, 4, 2, 13, 2, 4, 80, 10, 0, 100, 120, '1', '2025-11-11 17:16:27', '1', '2025-11-11 17:17:07', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, 1, '统计专用试卷5', 3, 3, 2, 4, 2, 13, 2, 4, 150, 10, 0, 100, 120, '1', '2025-11-11 17:16:27', '1', '2025-11-11 17:17:07', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, 1, '统计专用试卷6', 3, 3, 2, 4, 2, 13, 2, 4, 100, 10, 0, 100, 120, '1', '2025-11-11 17:16:27', '1', '2025-11-11 17:17:07', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10014, 1, '33333', 3, 3, 2, 4, 2, 4, 2, 4, 12, 10, 0, 100, 44, '1', '2025-11-10 11:37:36', '1', '2025-11-10 18:06:13', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10015, 1, '2222', 3, 3, 2, 4, 1, 2, 1, 2, 8, 6, 10, 100, 44, '1', '2025-11-10 11:43:32', '1', '2025-11-10 14:29:56', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10016, 1, '444', 3, 2, 2, 4, 2, 4, 5, 10, 18, 20, 0, 0, 100, '1', '2025-11-11 10:56:24', '1', '2025-11-11 11:27:59', '222'); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10017, 1, '测试试卷', 3, 3, 2, 4, 2, 13, 2, 4, 21, 10, 3, 100, 120, '1', '2025-11-11 17:16:27', '1', '2025-11-11 17:17:07', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10018, 1, '测试111', NULL, 1, 3, 16, 3, 15, 5, 10, 41, 20, 0, 100, 120, '1', '2025-11-18 17:38:32', '1', NULL, ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10020, 17, '测试试卷龙小孟', 14, 3, 3, 6, 1, 2, 2, 4, 12, 10, 0, 100, 120, '123', '2025-11-24 10:59:49', '123', NULL, 'zczzx fds撒旦发射点发射点'); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10021, 1, '杨测试试卷', 6, 3, 2, 10, 2, 10, 1, 5, 25, 10, 7, 100, 120, '1', '2025-11-28 12:12:09', '1', '2025-11-28 12:14:26', '无'); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10022, 21, '杨测试试卷', 9, 3, 2, 4, 2, 13, 1, 5, 22, 10, 4, 100, 120, '133', '2025-11-28 12:20:45', '133', NULL, ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10023, 1, 'test', NULL, 3, 10, 65, 7, 35, 0, 0, 100, 10, 0, 100, 13, '1', '2025-11-28 15:37:49', '1', NULL, '1212'); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10024, 1, 't1', NULL, 1, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 19, '1', '2025-11-28 15:39:02', '1', '2025-11-28 15:48:43', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10025, 1, '121212', NULL, 1, 10, 65, 7, 35, 0, 0, 100, 10, 1, 100, 15, '1', '2025-11-28 15:52:52', '1', '2025-11-28 15:53:17', ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10026, 1, 'asdfasfd', NULL, 1, 10, 65, 7, 35, 0, 0, 100, 10, 3, 100, 20, '1', '2025-11-28 15:54:05', '1', NULL, ''); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10027, 17, '测试试卷2', NULL, 1, 9, 45, 0, 0, 0, 0, 45, 30, 3, 100, 100, '123', '2025-12-01 11:11:33', '123', NULL, '212212'); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10028, 17, '测试试卷3', NULL, 1, 5, 25, 7, 35, 0, 0, 60, 50, 2, 100, 30, '123', '2025-12-01 14:29:56', '123', '2025-12-01 14:32:04', '33333'); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10029, 17, '试卷44444444', NULL, 2, 5, 25, 0, 0, 0, 0, 25, 10, 0, 0, 120, '123', '2025-12-01 18:03:47', '123', NULL, 'dfsfdsf'); INSERT INTO `base_exam_info` (`id`, `sch_id`, `exam_title`, `exam_course_id`, `exam_rank`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `full_mark`, `pass_mark`, `use_number`, `status`, `exam_time`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10030, 21, '11', NULL, 1, 2, 4, 0, 0, 0, 0, 4, 10, 0, 0, 120, '133', '2025-12-04 16:53:26', '133', NULL, '111'); COMMIT; -- ---------------------------- -- Table structure for base_exam_info_question -- ---------------------------- DROP TABLE IF EXISTS `base_exam_info_question`; CREATE TABLE `base_exam_info_question` ( `exam_id` int DEFAULT NULL COMMENT '试卷主键', `question_id` int DEFAULT NULL COMMENT '问题主键', `question_marks` int DEFAULT NULL COMMENT '问题分数', `question_sort_by` int DEFAULT NULL COMMENT '问题排序', KEY `index_exam_id` (`exam_id`), KEY `index_question_id` (`question_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='试卷问题'; -- ---------------------------- -- Records of base_exam_info_question -- ---------------------------- BEGIN; INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10015, 10321, 2, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10015, 10318, 2, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10015, 10322, 2, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10015, 10323, 2, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10014, 10321, 2, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10014, 10318, 2, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10014, 10322, 2, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10014, 10319, 2, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10014, 10323, 2, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10014, 10320, 2, 6); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10016, 10318, 2, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10016, 10321, 2, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10016, 10322, 2, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10016, 10319, 2, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10016, 10323, 2, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10016, 10320, 2, 6); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10016, 10326, 2, 7); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10016, 10325, 2, 8); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10016, 10324, 2, 9); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10017, 10328, 2, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10017, 10327, 2, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10017, 10329, 11, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10017, 10322, 2, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10017, 10326, 2, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10017, 10325, 2, 6); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10330, 12, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10328, 2, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10327, 2, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10329, 11, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10322, 2, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10319, 2, 6); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10326, 2, 7); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10325, 2, 8); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10324, 2, 9); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10323, 2, 10); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10018, 10320, 2, 11); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10020, 10328, 2, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10020, 10327, 2, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10020, 10321, 2, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10020, 10322, 2, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10020, 10323, 2, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10020, 10320, 2, 6); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10021, 10351, 5, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10021, 10350, 5, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10021, 10343, 5, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10021, 10342, 5, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10021, 10352, 5, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10022, 10321, 2, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10022, 10318, 2, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10022, 10329, 11, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10022, 10322, 2, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10022, 10352, 5, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10353, 20, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10351, 5, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10350, 5, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10347, 5, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10346, 5, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10339, 5, 6); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10338, 5, 7); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10337, 5, 8); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10336, 5, 9); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10335, 5, 10); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10343, 5, 11); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10342, 5, 12); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10341, 5, 13); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10340, 5, 14); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10329, 11, 15); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10322, 2, 16); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10023, 10319, 2, 17); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10353, 20, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10351, 5, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10350, 5, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10347, 5, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10346, 5, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10339, 5, 6); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10338, 5, 7); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10337, 5, 8); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10336, 5, 9); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10335, 5, 10); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10343, 5, 11); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10342, 5, 12); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10341, 5, 13); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10340, 5, 14); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10329, 11, 15); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10322, 2, 16); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10025, 10319, 2, 17); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10353, 20, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10351, 5, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10350, 5, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10347, 5, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10346, 5, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10339, 5, 6); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10338, 5, 7); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10337, 5, 8); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10336, 5, 9); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10335, 5, 10); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10343, 5, 11); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10342, 5, 12); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10341, 5, 13); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10340, 5, 14); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10329, 11, 15); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10322, 2, 16); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10026, 10319, 2, 17); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10027, 10351, 5, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10027, 10350, 5, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10027, 10347, 5, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10027, 10339, 5, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10027, 10346, 5, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10027, 10338, 5, 6); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10027, 10337, 5, 7); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10027, 10336, 5, 8); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10027, 10335, 5, 9); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10351, 5, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10350, 5, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10347, 5, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10346, 5, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10339, 5, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10343, 5, 6); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10342, 5, 7); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10341, 5, 8); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10340, 5, 9); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10329, 11, 10); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10322, 2, 11); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10028, 10319, 2, 12); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10029, 10354, 5, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10029, 10351, 5, 2); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10029, 10350, 5, 3); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10029, 10347, 5, 4); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10029, 10346, 5, 5); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10030, 10321, 2, 1); INSERT INTO `base_exam_info_question` (`exam_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (10030, 10318, 2, 2); COMMIT; -- ---------------------------- -- Table structure for base_exam_plan -- ---------------------------- DROP TABLE IF EXISTS `base_exam_plan`; CREATE TABLE `base_exam_plan` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'ID', `sch_id` bigint NOT NULL COMMENT '学校ID', `exam_title` varchar(64) DEFAULT NULL COMMENT '考试名称', `exam_info_id` bigint DEFAULT NULL COMMENT '考试试卷', `exam_start_time` datetime DEFAULT NULL COMMENT '考试开始时间', `exam_end_time` datetime DEFAULT NULL COMMENT '考试结束时间', `exam_address` varchar(64) DEFAULT NULL COMMENT '考试地址', `academic_id` bigint DEFAULT NULL COMMENT '学年学期', `exam_status` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '1' COMMENT '考试状态1-未开始 2-进行中 3-已结束', `status` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '0' COMMENT '安排状态', `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '修改人', `update_time` datetime DEFAULT NULL COMMENT '修改时间', `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), KEY `index_sch_id` (`sch_id`) ) ENGINE=InnoDB AUTO_INCREMENT=134 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='考试安排'; -- ---------------------------- -- Records of base_exam_plan -- ---------------------------- BEGIN; INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 1, '考试测试1', 10014, '2025-11-17 11:53:39', '2025-11-22 11:53:53', '第一教室', 14, '3', '0', '1', '2025-11-18 17:05:51', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 1, '考试测试2', 10015, '2025-11-21 17:06:18', '2025-11-29 17:06:23', '第二教室', 14, '3', '0', '1', '2025-11-18 17:06:45', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 1, '考试测试3', 10017, '2025-11-21 17:07:05', '2025-11-27 17:07:10', '第三教室', 14, '3', '0', '1', '2025-11-18 17:07:26', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, 1, '考试222', 6, '2025-11-23 12:15:00', '2025-11-23 15:45:00', '考试地址2222', 14, '3', '0', '1', '2025-11-22 13:30:04', '1', '2025-11-22 13:49:40', NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (110, 1, '测试计划2', 6, '2025-11-24 09:30:00', '2025-11-24 13:00:00', '12122', 14, '3', '0', '1', '2025-11-23 20:01:36', '1', '2025-11-23 20:01:48', NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (111, 17, '龙小孟的考试安排1', 10020, '2025-11-24 10:30:00', '2025-11-24 12:30:00', '教学楼', 33, '3', '0', '123', '2025-11-24 11:02:01', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (112, 21, '杨创建的考试安排', 10022, '2025-11-28 14:00:00', '2025-11-28 17:00:00', '第二教室', 37, '3', '0', '133', '2025-11-28 12:25:00', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (113, 1, 'aaaa', 10026, '2025-11-01 08:30:00', '2025-11-01 09:00:00', 'asdfsadf', 14, '3', '0', '1', '2025-11-28 16:41:05', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (117, 1, 'sadfsdf', 10025, '2025-12-01 08:30:00', '2025-12-01 10:00:00', 'asdfsadf', 14, '3', '0', '1', '2025-11-28 17:06:25', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (118, 21, '121212', 10022, '2025-12-02 08:30:00', '2025-12-02 10:00:00', '12121212', 37, '3', '0', '133', '2025-11-28 17:29:58', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (120, 17, '龙小孟的考试安排2', 10027, '2025-12-01 11:00:00', '2025-12-01 11:15:00', '44444', 33, '3', '0', '123', '2025-12-01 11:13:02', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (121, 21, '1212121', 10022, '2025-12-04 18:00:00', '2025-12-04 18:30:00', '12121', 37, '3', '0', '133', '2025-12-04 16:57:26', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (122, 1, '测试3', 1, '2025-12-05 08:45:00', '2025-12-05 09:30:00', '时尚大方', 14, '3', '0', '1', '2025-12-04 17:05:38', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (123, 1, '12', 1, '2025-12-05 10:00:00', '2025-12-05 11:00:00', '12dfasdf', 14, '3', '0', '1', '2025-12-05 09:47:19', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (125, 1, 'c1', 10026, '2025-12-09 09:00:00', '2025-12-09 09:45:00', '1222', 14, '3', '0', '1', '2025-12-08 17:47:03', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (126, 1, '1209测试1', 10021, '2025-12-09 08:30:00', '2025-12-09 12:00:00', '测试111', 14, '3', '0', '1', '2025-12-09 10:32:01', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (127, 1, '1209测试002', 10021, '2025-12-09 12:00:00', '2025-12-09 18:00:00', '测试地址', 14, '3', '0', '1', '2025-12-09 12:32:38', NULL, NULL, '1765274400000'); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (128, 1, '1209测试003', 10021, '2025-12-09 13:00:00', '2025-12-09 13:20:00', '测试地址', 14, '3', '0', '1', '2025-12-09 13:33:39', NULL, NULL, '1765257600000'); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (129, 1, '二年级数学期末', 10021, '2025-12-11 09:00:00', '2025-12-11 10:00:00', 'sksksk', 14, '3', '0', '1', '2025-12-10 15:03:38', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (130, 1, '二年级语文上学期周末', 10021, '2026-01-12 05:45:00', '2026-01-18 20:30:00', 'asdf', 14, '3', '0', '1', '2025-12-10 15:04:56', NULL, NULL, '1768739400000'); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (131, 17, '考试安排555', 10027, '2025-12-11 14:15:00', '2025-12-11 15:45:00', '公司的事发生的', 33, '3', '0', '123', '2025-12-11 10:55:32', NULL, NULL, NULL); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (132, 1, '1218测试考试安排', 10017, '2026-01-12 05:45:00', '2026-01-18 20:30:00', '教学楼第一教室', 14, '3', '0', '1', '2025-12-18 15:38:12', NULL, NULL, '1768739400000'); INSERT INTO `base_exam_plan` (`id`, `sch_id`, `exam_title`, `exam_info_id`, `exam_start_time`, `exam_end_time`, `exam_address`, `academic_id`, `exam_status`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (133, 1, 'sdfsdf', 10021, '2026-01-19 15:15:00', '2026-01-19 16:45:00', 'sdfsdf', 13, '2', '0', '1', '2026-01-19 14:05:29', NULL, NULL, '1768808700000'); COMMIT; -- ---------------------------- -- Table structure for base_exam_plan_class -- ---------------------------- DROP TABLE IF EXISTS `base_exam_plan_class`; CREATE TABLE `base_exam_plan_class` ( `plan_id` bigint NOT NULL COMMENT '安排ID', `class_id` bigint NOT NULL COMMENT '班级ID' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='考试安排范围'; -- ---------------------------- -- Records of base_exam_plan_class -- ---------------------------- BEGIN; INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (1, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (1, 6); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (1, 8); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (1, 9); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (2, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (2, 6); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (2, 8); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (2, 9); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (3, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (3, 6); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (3, 8); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (3, 9); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (109, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (109, 6); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (110, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (110, 6); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (111, 25); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (111, 26); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (112, 30); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (113, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (117, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (118, 30); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (120, 25); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (120, 26); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (121, 30); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (122, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (122, 6); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (123, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (125, 9); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (126, 9); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (127, 9); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (128, 9); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (129, 8); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (130, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (131, 25); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (132, 8); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (132, 9); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (132, 5); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (132, 6); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (132, 32); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (132, 33); INSERT INTO `base_exam_plan_class` (`plan_id`, `class_id`) VALUES (133, 9); COMMIT; -- ---------------------------- -- Table structure for base_exam_question -- ---------------------------- DROP TABLE IF EXISTS `base_exam_question`; CREATE TABLE `base_exam_question` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', `sch_id` int NOT NULL COMMENT '学校主键', `question_desc` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '问题描述', `question_type` varchar(10) NOT NULL COMMENT '问题类型', `question_rank` varchar(10) DEFAULT NULL COMMENT '问题级别', `question_course_id` int DEFAULT NULL COMMENT '关联课程', `question_answer` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '问题答案', `question_analysis` varchar(1024) DEFAULT NULL COMMENT '问题解析', `question_knowledge` varchar(1024) DEFAULT NULL COMMENT '问题知识', `question_score` int unsigned DEFAULT '0' COMMENT '问题分数', `use_number` int DEFAULT '0' COMMENT '使用次数', `status` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '1' COMMENT '状态:1-启用;0-禁用', `create_by` varchar(64) DEFAULT NULL COMMENT '创建人', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT NULL COMMENT '修改人', `update_time` datetime DEFAULT NULL COMMENT '修改时间', `remark` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), KEY `index_sch_id` (`sch_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=10357 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='基础题库'; -- ---------------------------- -- Records of base_exam_question -- ---------------------------- BEGIN; INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10318, 1, '马克思主义中国化的第一次历史性飞跃产生的理论成果是?', '1', '0.4', 3, 'A', 'a', 'b', 2, 0, '1', '1', '2025-11-08 14:58:48', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10319, 1, '社会主义核心价值观中,国家层面的价值目标包括哪些?', '2', '0.4', 3, 'A,B,C,D', 'a', 'b', 2, 0, '1', '1', '2025-11-08 15:01:49', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10320, 1, '改革开放是决定当代中国命运的关键一招。', '3', '0.6', 3, 'Y', 'a', 'b', 2, 0, '1', '1', '2025-11-08 15:07:59', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10321, 1, '思想道德修养与法律基础课程的主要任务是()', '1', '0.6', 3, 'C', 'a', 'b', 2, 0, '1', '1', '2025-11-08 15:09:11', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10322, 1, '学习思想道德修养与法律基础课程的意义包括()', '2', '0.8', 3, 'B,C', 'aa', 'bb', 2, 0, '1', '1', '2025-11-08 15:12:15', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10323, 1, '思想道德素质和法律素质不是人的基本素质。', '3', '0.8', 3, 'N', 'xx', 'yy', 2, 0, '1', '1', '2025-11-08 15:12:15', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10329, 1, '干什么1111?', '2', '0.4', 3, 'A,B', '测试555', '123123,214fs阿三打撒', 11, 11, '1', '1', '2025-11-11 13:07:00', '1', '2025-11-11 13:34:38', NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10330, 1, '这是什么题目', '1', '0.4', 3, 'B', '测试', '知识点1,知识点2,...', 12, 0, '1', '1', '2025-11-11 20:25:57', '1', '2025-11-26 15:54:20', NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10331, 1, '中国是什么时间成立的', '1', '0.4', 23, 'D', '1949年啊', NULL, 10, 0, '1', '1', '2025-11-26 15:55:32', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10332, 1, '叶子为什么是绿的', '1', '0.6', 23, 'C', '因为有叶绿素', NULL, 5, 0, '1', '1', '2025-11-26 15:57:01', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10333, 1, '1.马克思主义的根本立场是( )', '1', '0.6', 14, 'B', '民族立场民族立场民族立场民族立场', NULL, 5, 0, '1', '1', '2025-11-26 16:05:00', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10334, 1, '毛泽东思想活的灵魂的三个基本方面是( )', '1', '0.8', 24, 'A', '实事求是、群众路线、独立自主实事求是、群众路线、独立自主', NULL, 5, 0, '1', '1', '2025-11-26 16:06:01', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10335, 1, '3.习近平新时代中国特色社会主义思想的核心要义是( )', '1', '0.8', 5, 'B', ' “十个明确” “十个明确” “十个明确” “十个明确”', NULL, 5, 0, '1', '1', '2025-11-26 16:07:11', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10336, 1, '4.中国共产党的根本宗旨是( )', '1', '0.6', 4, 'C', '全心全意为人民服务全心全意为人民服务', NULL, 5, 0, '1', '1', '2025-11-26 16:08:05', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10337, 1, '社会主义核心价值观的国家层面价值目标是( )', '1', '0.6', 3, 'A', '富强民主文明和谐富强民主文明和谐富强民主文明和谐富强民主文明和谐', NULL, 5, 0, '1', '1', '2025-11-26 16:09:01', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10338, 1, '党的历史上具有生死攸关转折点意义的会议是( )', '1', NULL, 5, 'B', '遵义会议遵义会议遵义会议遵义会议遵义会议遵义会议遵义会议遵义会议', NULL, 5, 0, '1', '1', '2025-11-26 16:09:42', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10339, 1, '7.马克思主义中国化的第一次历史性飞跃是( )', '1', '0.4', 3, 'A', '毛泽东思想毛泽东思想毛泽东思想毛泽东思想毛泽东思想', '没有的', 5, 0, '1', '1', '2025-11-26 16:10:47', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10340, 1, '马克思主义的主要组成部分包括( )', '2', '0.8', 4, 'A,B,C', '马克思主义的主要组成部马克思主义的主要组成部', NULL, 5, 0, '1', '1', '2025-11-26 16:11:50', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10341, 1, '毛泽东思想活的灵魂的基本方面有( )', '2', '0.6', 9, 'A,B,C', '毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方', NULL, 5, 0, '1', '1', '2025-11-26 16:12:38', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10342, 1, '3.习近平新时代中国特色社会主义思想的“十四个坚持”包括( )', '2', '0.4', 4, 'A,B,C,D', '习近平新时代中国特色社会主义思想习近平新时代中国特色社会主义思想习近平新时代中国特色社会主义思想习近平新时代中国特色社会主义思想习近平新时代中国特色社会主义思想', NULL, 5, 0, '1', '1', '2025-11-26 16:13:39', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10343, 1, '党的十九大提出的“四个伟大”是指', '2', '0.6', 9, 'A,B,C,D', '党的十九大提出的“四个伟大”是指党的十九大提出的“四个伟大”是指党的十九大提出的“四个伟大”是指', NULL, 5, 0, '1', '1', '2025-11-26 16:14:31', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10344, 1, '1.马克思主义是一成不变的真理。( )', '3', '0.8', 9, 'B', '1.马克思主义是一成不变的真理。( )1.马克思主义是一成不变的真理。( )1.马克思主义是一成不变的真理。( )', NULL, 5, 0, '1', '1', '2025-11-26 16:15:31', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10345, 1, '毛泽东思想就是毛泽东个人的思想。', '3', '0.6', 5, 'B', '毛泽东思想就是毛泽东个人的思想。毛泽东思想就是毛泽东个人的思想。毛泽东思想就是毛泽东个人的思想。毛泽东思想就是毛泽东个人的思想。', NULL, 5, 0, '1', '1', '2025-11-26 16:16:13', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10346, 1, '习近平新时代中国特色社会主义思想是当代中国马克思主义、二十一世纪马克思主义', '1', '0.6', 5, 'A', '习近平新时代中国特色社会主义思想是当代中', NULL, 5, 0, '1', '1', '2025-11-26 16:17:02', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10347, 1, '党的领导是中国特色社会主义最本质的特征', '1', '0.6', 5, 'A', '党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征', NULL, 5, 0, '1', '1', '2025-11-26 16:18:13', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10348, 1, '社会主义核心价值观只需要践行个人层面的要求', '3', '0.6', 5, 'B', '社会主义核心价值观只需要践行个人层面的要求社会主义核心价值观只需要践行个人层面的要求社会主义核心价值观只需要践行个人层面的要求', NULL, 5, 0, '1', '1', '2025-11-26 16:25:18', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10349, 1, '遵义会议确立了毛泽东在党中央和红军中的领导地位', '3', '0.6', 5, 'A', '遵义会议确立了毛泽东在党中央和红军中的领导地位遵义会议确立了毛泽东在党中央和红军中的领导地位遵义会议确立了毛泽东在党中央和红军中的领导地位', NULL, 5, 0, '1', '1', '2025-11-26 16:26:02', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10350, 1, '全面依法治国的总目标是建设社会主义法治国家', '1', '0.6', 5, 'B', '全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家', NULL, 5, 0, '1', '1', '2025-11-26 16:26:38', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10351, 1, '道德是靠国家强制力保证实施的', '1', '0.8', 5, 'B', '道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的', NULL, 5, 0, '1', '1', '2025-11-26 16:27:19', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10352, 1, '改革开放是中国特色社会主义的根本任务', '3', '0.8', 5, 'B', '改革开放是中国特色社会主义的根本任务改革开放是中国特色社会主义的根本任务改革开放是中国特色社会主义的根本任务', NULL, 5, 0, '1', '1', '2025-11-26 16:28:01', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10353, 1, '11', '1', NULL, NULL, 'C', '', NULL, 20, 0, '1', '1', '2025-11-27 15:50:10', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10354, 17, '葡萄是什么味道的', '1', '0.6', NULL, 'B', NULL, NULL, 5, 0, '1', '123', '2025-12-01 11:34:07', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10355, 1, '马克思主义最根本的世界观和方法论是:', '1', '0.6', 3, 'A', 'xxx', 'a,b,c', 2, 0, '1', '1', '2025-12-05 16:21:24', NULL, NULL, NULL); INSERT INTO `base_exam_question` (`id`, `sch_id`, `question_desc`, `question_type`, `question_rank`, `question_course_id`, `question_answer`, `question_analysis`, `question_knowledge`, `question_score`, `use_number`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10356, 1, 'asdfasdf', '1', '0.8', NULL, 'A', 'aa', NULL, 2, 0, '1', '1', '2025-12-10 09:59:46', NULL, NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_exam_question_result -- ---------------------------- DROP TABLE IF EXISTS `base_exam_question_result`; CREATE TABLE `base_exam_question_result` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', `question_id` int NOT NULL COMMENT '问题主键', `option` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '答案选项', `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '答案描述', `is_ok` int DEFAULT NULL COMMENT '是否正确', `create_by` varchar(64) DEFAULT NULL COMMENT '创建人', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '修改人', `update_time` datetime DEFAULT NULL COMMENT '修改日期', `remark` varchar(255) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), KEY `index_question_id` (`question_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1046 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='题库问题'; -- ---------------------------- -- Records of base_exam_question_result -- ---------------------------- BEGIN; INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (929, 10318, 'A', '毛泽东思想', 1, '1', '2025-11-08 15:02:51', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (930, 10318, 'B', '邓小平理论', 0, '1', '2025-11-08 15:02:51', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (931, 10318, 'C', '\"三个代表\"重要思想', 0, '1', '2025-11-08 15:02:51', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (932, 10318, 'D', '科学发展观', 0, '1', '2025-11-08 15:02:51', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (933, 10319, 'A', '富强', 1, '1', '2025-11-08 15:02:51', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (934, 10319, 'B', '民主', 1, '1', '2025-11-08 15:02:51', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (935, 10319, 'C', '文明', 1, '1', '2025-11-08 15:02:51', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (936, 10319, 'D', '和谐', 1, '1', '2025-11-08 15:02:51', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (937, 10321, 'A', '提高学生的思想道德素质和法律素质', 1, '1', '2025-11-08 15:12:15', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (938, 10321, 'B', '传授法律专业知识', 0, '1', '2025-11-08 15:12:15', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (939, 10321, 'C', '培养政治理论研究者', 0, '1', '2025-11-08 15:12:15', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (940, 10321, 'D', '培养政治理论研究者', 0, '1', '2025-11-08 15:12:15', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (941, 10322, 'A', '有助于大学生认识立志、树德和做人的道理', 0, '1', '2025-11-08 15:12:15', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (942, 10322, 'B', '有助于大学生掌握丰富的思想道德和法律知识', 1, '1', '2025-11-08 15:12:15', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (943, 10322, 'C', '有助于大学生摆正德与才的位置', 1, '1', '2025-11-08 15:12:15', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (944, 10322, 'D', '有助于大学生提高法律实务能力', 0, '1', '2025-11-08 15:12:15', NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (945, 10329, 'A', '111', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (946, 10329, 'B', '222', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (947, 10329, 'C', '333', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (948, 10329, 'D', '444', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (952, 10328, 'A', '111111', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (953, 10328, 'B', '222222', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (954, 10328, 'C', '啊飒飒实打实', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (957, 10330, 'A', '答题卡222', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (958, 10330, 'B', '答题卡444', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (959, 10330, 'C', '答题卡44455666', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (960, 10331, 'A', '1945', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (961, 10331, 'B', '1946', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (962, 10331, 'C', '1947', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (963, 10331, 'D', '1949', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (964, 10332, 'A', '因为太阳晒的', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (965, 10332, 'B', '因为光的反射', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (966, 10332, 'C', '因为有叶绿素', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (967, 10332, 'D', '以上都对', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (968, 10333, 'A', '阶级立场', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (969, 10333, 'B', '人民立场', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (970, 10333, 'C', '民族立场', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (971, 10333, 'D', '个人立场', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (972, 10334, 'A', '实事求是、群众路线、独立自主', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (973, 10334, 'B', '统一战线、武装斗争、党的建设', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (974, 10334, 'C', '实事求是、独立自主、统一战线', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (975, 10334, 'D', '群众路线、武装斗争、独立自主', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (976, 10335, 'A', '“八个明确”', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (977, 10335, 'B', ' “十个明确”', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (978, 10335, 'C', '“十四个坚持” ', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (979, 10335, 'D', '“十三个方面成就”', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (980, 10336, 'A', '实现共产主义', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (981, 10336, 'B', '坚持党的领导', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (982, 10336, 'C', '全心全意为人民服务', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (983, 10336, 'D', '解放和发展生产力', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (984, 10337, 'A', '富强民主文明和谐', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (985, 10337, 'B', '自由平等公正法治', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (986, 10337, 'C', '爱国敬业诚信友善', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (987, 10337, 'D', '富强民主自由平等', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (988, 10338, 'A', '中共一大', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (989, 10338, 'B', '遵义会议', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (990, 10338, 'C', '瓦窑堡会议', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (991, 10338, 'D', '洛川会议', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (992, 10339, 'A', '毛泽东思想', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (993, 10339, 'B', '邓小平理论', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (994, 10339, 'C', ' “三个代表”重要思想\"', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (995, 10339, 'D', '习近平新时代中国特色社会主义思想', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (996, 10340, 'A', '马克思主义哲学', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (997, 10340, 'B', '马克思主义政治经济学', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (998, 10340, 'C', ' 科学社会主义', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (999, 10340, 'D', ' 空想社会主义', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1000, 10341, 'A', '实事求是', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1001, 10341, 'B', '群众路线', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1002, 10341, 'C', '独立自主', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1003, 10341, 'D', '统一战线', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1004, 10342, 'A', '坚持党对一切工作的领导', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1005, 10342, 'B', ' 坚持以人民为中心', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1006, 10342, 'C', '坚持全面深化改革', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1007, 10342, 'D', '坚持全面从严治党', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1008, 10343, 'A', '伟大斗争', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1009, 10343, 'B', '伟大工程', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1010, 10343, 'C', '伟大事业', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1011, 10343, 'D', '伟大梦想', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1012, 10344, 'A', '对', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1013, 10344, 'B', '错', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1014, 10345, 'A', '对', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1015, 10345, 'B', '错', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1016, 10346, 'A', '对', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1017, 10346, 'B', '错', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1018, 10347, 'A', '对', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1019, 10347, 'B', '错', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1020, 10348, 'A', '对', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1021, 10348, 'B', '错', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1022, 10349, 'A', '对', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1023, 10349, 'B', '错', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1024, 10350, 'A', '对', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1025, 10350, 'B', '错', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1026, 10351, 'A', '对', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1027, 10351, 'B', '错', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1028, 10352, 'A', '对', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1029, 10352, 'B', '错', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1030, 10353, 'A', '11', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1031, 10353, 'B', '11', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1032, 10353, 'C', '11', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1033, 10353, 'D', '11', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1034, 10354, 'A', '酸的', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1035, 10354, 'B', '甜的', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1036, 10354, 'C', '苦的', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1037, 10354, 'D', '辣的', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1038, 10355, 'A', '辩证唯物主义和历史唯物主义', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1039, 10355, 'B', '唯物主义和唯心主义', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1040, 10355, 'C', '辩证法和形而上学', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1041, 10355, 'D', '可知论和不可知论', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1042, 10356, 'A', '12', 1, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1043, 10356, 'B', '22', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1044, 10356, 'C', '444', 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_exam_question_result` (`id`, `question_id`, `option`, `description`, `is_ok`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1045, 10356, 'D', 'asdf', 0, NULL, NULL, NULL, NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_exam_student -- ---------------------------- DROP TABLE IF EXISTS `base_exam_student`; CREATE TABLE `base_exam_student` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'ID', `sch_id` bigint NOT NULL COMMENT '学校ID', `plan_id` bigint NOT NULL COMMENT '安排ID', `student_id` bigint NOT NULL COMMENT '学生ID', `exam_full_mark` int DEFAULT '100' COMMENT '试卷分数', `exam_pass_mark` int DEFAULT '100' COMMENT '通过分数', `student_mark` int DEFAULT NULL COMMENT '用户分数', `start_exam_time` datetime DEFAULT NULL COMMENT '考试时间', `end_exam_time` datetime DEFAULT NULL COMMENT '交卷时间', `exam_status` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '1' COMMENT '考试状态1-未进行2-进行中 3-已提交', `cheating_num` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '0' COMMENT '作弊次数', `use_times` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '答题耗时', `status` varchar(10) DEFAULT '0' COMMENT '状态标识', `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '修改人', `update_time` datetime DEFAULT NULL COMMENT '修改时间', `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), KEY `index_sch_id` (`sch_id`), KEY `index_plan_id` (`plan_id`) USING BTREE, KEY `index_student_id` (`student_id`) ) ENGINE=InnoDB AUTO_INCREMENT=359 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='学生考试'; -- ---------------------------- -- Records of base_exam_student -- ---------------------------- BEGIN; INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 1, 101, 3, 12, 10, 20, '2025-11-17 15:04:30', '2025-11-19 00:00:00', '3', NULL, '31691', '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 1, 101, 2, 21, 10, 90, '2025-11-17 15:04:30', '2025-11-17 16:04:37', '3', NULL, NULL, '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 1, 102, 3, 21, 10, 119, '2025-11-17 15:04:30', '2025-11-17 16:04:37', '3', NULL, NULL, '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 1, 103, 3, 21, 10, 65, '2025-11-17 15:04:30', '2025-11-17 16:04:37', '3', NULL, NULL, '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, 1, 104, 3, 21, 10, 41, '2025-11-17 15:04:30', '2025-11-17 16:04:37', '3', NULL, NULL, '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, 1, 105, 3, 21, 10, 145, '2025-11-17 15:04:30', '2025-11-17 16:04:37', '3', NULL, NULL, '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, 1, 106, 3, 21, 10, 56, '2025-11-17 15:04:30', '2025-11-17 16:04:37', '3', NULL, NULL, '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, 1, 106, 3, 21, 10, 70, '2025-11-17 15:04:30', '2025-11-17 16:04:37', '3', NULL, NULL, '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, 1, 106, 2, 21, 10, 81, '2025-11-17 15:04:30', '2025-11-17 16:04:37', '3', NULL, NULL, '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (296, 1, 1, 2, 12, 10, 10, '2025-11-20 16:38:00', '2025-11-20 16:38:22', '3', '10', '21', '0', '1', '2025-11-18 17:23:40', '2', '2025-11-20 16:38:22', NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (297, 1, 2, 2, 8, 6, 8, NULL, NULL, '1', NULL, NULL, '0', '1', '2025-11-18 17:24:00', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (298, 1, 3, 2, 21, 10, 21, '2025-11-22 21:24:27', NULL, '2', '3', NULL, '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (299, 1, 3, 3, 21, 10, 20, '2025-11-22 21:22:32', NULL, '1', '0', NULL, '0', '1', '2025-11-18 17:24:23', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (301, 1, 109, 2, 100, 10, NULL, NULL, NULL, '1', NULL, NULL, '0', '1', '2025-11-22 13:49:40', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (303, 1, 110, 2, 100, 10, NULL, '2026-01-12 14:01:28', NULL, '2', '0', NULL, '0', '1', '2025-11-23 20:01:48', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (304, 17, 111, 10, 12, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '123', '2025-11-24 11:02:01', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (305, 17, 111, 11, 12, 10, 8, '2025-11-24 11:05:44', '2025-11-24 11:06:52', '3', '1', '69', '0', '123', '2025-11-24 11:02:01', '11', '2025-11-24 11:06:52', NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (306, 21, 112, 14, 22, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '133', '2025-11-28 12:25:00', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (307, 1, 113, 2, 100, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-11-28 16:41:05', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (308, 1, 117, 2, 100, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-11-28 17:06:25', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (309, 21, 118, 14, 22, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '133', '2025-11-28 17:29:58', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (310, 17, 120, 10, 45, 30, NULL, NULL, NULL, '1', '0', NULL, '0', '123', '2025-12-01 11:13:02', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (311, 17, 120, 11, 45, 30, NULL, '2025-12-01 11:18:47', NULL, '2', '0', NULL, '0', '123', '2025-12-01 11:13:02', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (312, 17, 120, 12, 45, 30, NULL, NULL, NULL, '1', '0', NULL, '0', '123', '2025-12-01 11:13:02', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (313, 17, 120, 13, 45, 30, NULL, NULL, NULL, '1', '0', NULL, '0', '123', '2025-12-01 11:13:02', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (314, 21, 121, 14, 22, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '133', '2025-12-04 16:57:26', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (315, 1, 122, 2, 100, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-04 17:05:38', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (316, 1, 123, 2, 100, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-05 09:47:19', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (317, 17, 124, 10, 60, 50, NULL, NULL, NULL, '1', '0', NULL, '0', '123', '2025-12-08 17:05:52', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (318, 17, 124, 15, 60, 50, NULL, NULL, NULL, '1', '0', NULL, '0', '123', '2025-12-08 17:05:52', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (319, 17, 124, 18, 60, 50, NULL, NULL, NULL, '1', '0', NULL, '0', '123', '2025-12-08 17:05:52', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (320, 1, 125, 1, 100, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-08 17:47:03', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (321, 1, 125, 3, 100, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-08 17:47:03', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (322, 1, 125, 4, 100, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-08 17:47:03', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (323, 1, 125, 5, 100, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-08 17:47:03', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (324, 1, 125, 6, 100, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-08 17:47:03', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (325, 1, 126, 1, 25, 10, NULL, '2025-12-09 11:50:10', NULL, '2', '4', NULL, '0', '1', '2025-12-09 10:32:01', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (326, 1, 126, 3, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 10:32:01', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (327, 1, 126, 4, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 10:32:01', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (328, 1, 126, 5, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 10:32:01', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (329, 1, 126, 6, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 10:32:01', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (330, 1, 127, 1, 25, 10, 0, '2025-12-09 12:32:56', '2025-12-09 12:54:37', '3', '7', '1300', '0', '1', '2025-12-09 12:32:38', '1', '2025-12-09 12:54:37', NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (331, 1, 127, 3, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 12:32:38', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (332, 1, 127, 4, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 12:32:38', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (333, 1, 127, 5, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 12:32:38', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (334, 1, 127, 6, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 12:32:38', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (335, 1, 128, 1, 25, 10, 0, '2025-12-09 13:33:50', '2025-12-09 13:42:49', '3', '0', '538', '0', '1', '2025-12-09 13:33:39', '1', '2025-12-09 13:42:49', NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (336, 1, 128, 3, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 13:33:39', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (337, 1, 128, 4, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 13:33:39', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (338, 1, 128, 5, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 13:33:39', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (339, 1, 128, 6, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-09 13:33:39', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (340, 1, 129, 7, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-10 15:03:38', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (341, 1, 130, 2, 25, 10, 0, '2026-01-12 11:51:08', '2026-01-12 17:28:32', '3', '11', '20243', '0', '1', '2025-12-10 15:04:56', '2', '2026-01-12 17:28:32', NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (342, 1, 130, 17, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-10 15:04:56', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (343, 17, 131, 10, 45, 30, NULL, NULL, NULL, '1', '0', NULL, '0', '123', '2025-12-11 10:55:32', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (344, 17, 131, 15, 45, 30, NULL, NULL, NULL, '1', '0', NULL, '0', '123', '2025-12-11 10:55:32', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (345, 17, 131, 18, 45, 30, NULL, NULL, NULL, '1', '0', NULL, '0', '123', '2025-12-11 10:55:32', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (346, 1, 132, 7, 21, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-18 15:38:12', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (347, 1, 132, 1, 21, 10, NULL, '2025-12-18 17:17:40', NULL, '2', '0', NULL, '0', '1', '2025-12-18 15:38:12', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (348, 1, 132, 3, 21, 10, NULL, '2025-12-18 17:24:54', NULL, '2', '0', NULL, '0', '1', '2025-12-18 15:38:12', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (349, 1, 132, 4, 21, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-18 15:38:12', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (350, 1, 132, 5, 21, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-18 15:38:12', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (351, 1, 132, 6, 21, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-18 15:38:12', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (352, 1, 132, 2, 21, 10, 0, '2025-12-18 17:33:29', '2026-01-12 14:14:49', '3', '4', '2148079', '0', '1', '2025-12-18 15:38:12', '2', '2026-01-12 14:14:49', NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (353, 1, 132, 17, 21, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2025-12-18 15:38:12', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (354, 1, 133, 1, 25, 10, 10, '2026-01-19 14:23:16', '2026-01-19 14:23:36', '1', '1', '19', '0', '1', '2026-01-19 14:05:29', '1', '2026-01-19 14:23:36', NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (355, 1, 133, 3, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2026-01-19 14:05:29', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (356, 1, 133, 4, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2026-01-19 14:05:29', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (357, 1, 133, 5, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2026-01-19 14:05:29', NULL, NULL, NULL); INSERT INTO `base_exam_student` (`id`, `sch_id`, `plan_id`, `student_id`, `exam_full_mark`, `exam_pass_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (358, 1, 133, 6, 25, 10, NULL, NULL, NULL, '1', '0', NULL, '0', '1', '2026-01-19 14:05:29', NULL, NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_exam_student_result -- ---------------------------- DROP TABLE IF EXISTS `base_exam_student_result`; CREATE TABLE `base_exam_student_result` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID', `exam_student_id` int DEFAULT NULL COMMENT '学生考试ID', `question_id` int DEFAULT NULL COMMENT '问题主键', `question_title` varchar(128) DEFAULT NULL COMMENT '问题描述', `question_type` int DEFAULT NULL COMMENT '问题类型', `question_option` text COMMENT '问题选项', `student_answer` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '学生答案', `question_answer` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '问题答案', `use_result` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '0' COMMENT '答题结果', `mark` varchar(10) DEFAULT NULL COMMENT '问题分数', `use_mark` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '答题得分', PRIMARY KEY (`id`), KEY `index_exam_student_id` (`exam_student_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1801 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='学生考试结果'; -- ---------------------------- -- Records of base_exam_student_result -- ---------------------------- BEGIN; INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1719, 2, 10321, '思想道德修养与法律基础课程的主要任务是()', 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":937,\"questionId\":10321,\"option\":\"A\",\"description\":\"提高学生的思想道德素质和法律素质\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":938,\"questionId\":10321,\"option\":\"B\",\"description\":\"传授法律专业知识\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":939,\"questionId\":10321,\"option\":\"C\",\"description\":\"培养政治理论研究者\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":940,\"questionId\":10321,\"option\":\"D\",\"description\":\"培养政治理论研究者\",\"isOk\":0}]', 'A', '', 'N', '2', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1720, 2, 10318, '马克思主义中国化的第一次历史性飞跃产生的理论成果是?', 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":929,\"questionId\":10318,\"option\":\"A\",\"description\":\"毛泽东思想\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":930,\"questionId\":10318,\"option\":\"B\",\"description\":\"邓小平理论\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":931,\"questionId\":10318,\"option\":\"C\",\"description\":\"\\\"三个代表\\\"重要思想\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":932,\"questionId\":10318,\"option\":\"D\",\"description\":\"科学发展观\",\"isOk\":0}]', 'A', '', 'N', '2', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1721, 2, 10322, '学习思想道德修养与法律基础课程的意义包括()', 2, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":941,\"questionId\":10322,\"option\":\"A\",\"description\":\"有助于大学生认识立志、树德和做人的道理\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":942,\"questionId\":10322,\"option\":\"B\",\"description\":\"有助于大学生掌握丰富的思想道德和法律知识\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":943,\"questionId\":10322,\"option\":\"C\",\"description\":\"有助于大学生摆正德与才的位置\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":944,\"questionId\":10322,\"option\":\"D\",\"description\":\"有助于大学生提高法律实务能力\",\"isOk\":0}]', 'ABC', '', 'N', '2', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1722, 2, 10319, '社会主义核心价值观中,国家层面的价值目标包括哪些?', 2, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":933,\"questionId\":10319,\"option\":\"A\",\"description\":\"富强\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":934,\"questionId\":10319,\"option\":\"B\",\"description\":\"民主\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":935,\"questionId\":10319,\"option\":\"C\",\"description\":\"文明\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":936,\"questionId\":10319,\"option\":\"D\",\"description\":\"和谐\",\"isOk\":1}]', 'A', '', 'N', '2', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1723, 2, 10323, '思想道德素质和法律素质不是人的基本素质。', 3, '[{\"option\":\"Y\",\"description\":\"正确\"},{\"option\":\"N\",\"description\":\"错误\"}]', 'Y', 'N', 'N', '2', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1724, 2, 10320, '改革开放是决定当代中国命运的关键一招。', 3, '[{\"option\":\"Y\",\"description\":\"正确\"},{\"option\":\"N\",\"description\":\"错误\"}]', 'Y', 'Y', 'N', '2', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1767, 296, 10321, '思想道德修养与法律基础课程的主要任务是()', 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":937,\"questionId\":10321,\"option\":\"A\",\"description\":\"提高学生的思想道德素质和法律素质\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":938,\"questionId\":10321,\"option\":\"B\",\"description\":\"传授法律专业知识\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":939,\"questionId\":10321,\"option\":\"C\",\"description\":\"培养政治理论研究者\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":940,\"questionId\":10321,\"option\":\"D\",\"description\":\"培养政治理论研究者\",\"isOk\":0}]', '', 'C', 'N', '2', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1768, 296, 10318, '马克思主义中国化的第一次历史性飞跃产生的理论成果是?', 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":929,\"questionId\":10318,\"option\":\"A\",\"description\":\"毛泽东思想\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":930,\"questionId\":10318,\"option\":\"B\",\"description\":\"邓小平理论\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":931,\"questionId\":10318,\"option\":\"C\",\"description\":\"\\\"三个代表\\\"重要思想\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":932,\"questionId\":10318,\"option\":\"D\",\"description\":\"科学发展观\",\"isOk\":0}]', 'A', 'A', 'Y', '2', '2'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1769, 296, 10322, '学习思想道德修养与法律基础课程的意义包括()', 2, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":941,\"questionId\":10322,\"option\":\"A\",\"description\":\"有助于大学生认识立志、树德和做人的道理\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":942,\"questionId\":10322,\"option\":\"B\",\"description\":\"有助于大学生掌握丰富的思想道德和法律知识\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":943,\"questionId\":10322,\"option\":\"C\",\"description\":\"有助于大学生摆正德与才的位置\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":944,\"questionId\":10322,\"option\":\"D\",\"description\":\"有助于大学生提高法律实务能力\",\"isOk\":0}]', 'BC', 'BC', 'Y', '2', '2'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1770, 296, 10319, '社会主义核心价值观中,国家层面的价值目标包括哪些?', 2, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":933,\"questionId\":10319,\"option\":\"A\",\"description\":\"富强\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":934,\"questionId\":10319,\"option\":\"B\",\"description\":\"民主\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":935,\"questionId\":10319,\"option\":\"C\",\"description\":\"文明\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:02:51\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":936,\"questionId\":10319,\"option\":\"D\",\"description\":\"和谐\",\"isOk\":1}]', 'ABCD', 'ABCD', 'Y', '2', '2'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1771, 296, 10323, '思想道德素质和法律素质不是人的基本素质。', 3, '[{\"option\":\"Y\",\"description\":\"正确\"},{\"option\":\"N\",\"description\":\"错误\"}]', 'N', 'N', 'Y', '2', '2'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1772, 296, 10320, '改革开放是决定当代中国命运的关键一招。', 3, '[{\"option\":\"Y\",\"description\":\"正确\"},{\"option\":\"N\",\"description\":\"错误\"}]', 'Y', 'Y', 'Y', '2', '2'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1773, 305, 10328, 'test5', 1, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":952,\"questionId\":10328,\"option\":\"A\",\"description\":\"111111\",\"isOk\":0},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":953,\"questionId\":10328,\"option\":\"B\",\"description\":\"222222\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":954,\"questionId\":10328,\"option\":\"C\",\"description\":\"啊飒飒实打实\",\"isOk\":0}]', 'B', 'B', 'Y', '2', '2'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1774, 305, 10327, 'test4', 1, '[]', '', 'A', 'N', '2', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1775, 305, 10321, '思想道德修养与法律基础课程的主要任务是()', 1, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":937,\"questionId\":10321,\"option\":\"A\",\"description\":\"提高学生的思想道德素质和法律素质\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":938,\"questionId\":10321,\"option\":\"B\",\"description\":\"传授法律专业知识\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":939,\"questionId\":10321,\"option\":\"C\",\"description\":\"培养政治理论研究者\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":940,\"questionId\":10321,\"option\":\"D\",\"description\":\"培养政治理论研究者\",\"isOk\":0}]', 'C', 'C', 'Y', '2', '2'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1776, 305, 10322, '学习思想道德修养与法律基础课程的意义包括()', 2, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":941,\"questionId\":10322,\"option\":\"A\",\"description\":\"有助于大学生认识立志、树德和做人的道理\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":942,\"questionId\":10322,\"option\":\"B\",\"description\":\"有助于大学生掌握丰富的思想道德和法律知识\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":943,\"questionId\":10322,\"option\":\"C\",\"description\":\"有助于大学生摆正德与才的位置\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":944,\"questionId\":10322,\"option\":\"D\",\"description\":\"有助于大学生提高法律实务能力\",\"isOk\":0}]', 'BC', 'BC', 'Y', '2', '2'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1777, 305, 10323, '思想道德素质和法律素质不是人的基本素质。', 3, '[{\"option\":\"Y\",\"description\":\"正确\"},{\"option\":\"N\",\"description\":\"错误\"}]', 'Y', 'N', 'N', '2', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1778, 305, 10320, '改革开放是决定当代中国命运的关键一招。', 3, '[{\"option\":\"Y\",\"description\":\"正确\"},{\"option\":\"N\",\"description\":\"错误\"}]', 'Y', 'Y', 'Y', '2', '2'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1779, 330, 10351, '道德是靠国家强制力保证实施的', 1, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1026,\"questionId\":10351,\"option\":\"A\",\"description\":\"对\",\"isOk\":0},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1027,\"questionId\":10351,\"option\":\"B\",\"description\":\"错\",\"isOk\":1}]', '', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1780, 330, 10350, '全面依法治国的总目标是建设社会主义法治国家', 1, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1024,\"questionId\":10350,\"option\":\"A\",\"description\":\"对\",\"isOk\":0},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1025,\"questionId\":10350,\"option\":\"B\",\"description\":\"错\",\"isOk\":1}]', '', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1781, 330, 10343, '党的十九大提出的“四个伟大”是指', 2, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1008,\"questionId\":10343,\"option\":\"A\",\"description\":\"伟大斗争\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1009,\"questionId\":10343,\"option\":\"B\",\"description\":\"伟大工程\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1010,\"questionId\":10343,\"option\":\"C\",\"description\":\"伟大事业\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1011,\"questionId\":10343,\"option\":\"D\",\"description\":\"伟大梦想\",\"isOk\":1}]', '', 'ABCD', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1782, 330, 10342, '3.习近平新时代中国特色社会主义思想的“十四个坚持”包括( )', 2, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1004,\"questionId\":10342,\"option\":\"A\",\"description\":\"坚持党对一切工作的领导\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1005,\"questionId\":10342,\"option\":\"B\",\"description\":\" 坚持以人民为中心\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1006,\"questionId\":10342,\"option\":\"C\",\"description\":\"坚持全面深化改革\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1007,\"questionId\":10342,\"option\":\"D\",\"description\":\"坚持全面从严治党\",\"isOk\":1}]', '', 'ABCD', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1783, 330, 10352, '改革开放是中国特色社会主义的根本任务', 3, '[{\"option\":\"Y\",\"description\":\"正确\"},{\"option\":\"N\",\"description\":\"错误\"}]', '', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1784, 335, 10351, '道德是靠国家强制力保证实施的', 1, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1026,\"questionId\":10351,\"option\":\"A\",\"description\":\"对\",\"isOk\":0},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1027,\"questionId\":10351,\"option\":\"B\",\"description\":\"错\",\"isOk\":1}]', 'A', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1785, 335, 10350, '全面依法治国的总目标是建设社会主义法治国家', 1, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1024,\"questionId\":10350,\"option\":\"A\",\"description\":\"对\",\"isOk\":0},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1025,\"questionId\":10350,\"option\":\"B\",\"description\":\"错\",\"isOk\":1}]', 'A', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1786, 335, 10343, '党的十九大提出的“四个伟大”是指', 2, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1008,\"questionId\":10343,\"option\":\"A\",\"description\":\"伟大斗争\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1009,\"questionId\":10343,\"option\":\"B\",\"description\":\"伟大工程\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1010,\"questionId\":10343,\"option\":\"C\",\"description\":\"伟大事业\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1011,\"questionId\":10343,\"option\":\"D\",\"description\":\"伟大梦想\",\"isOk\":1}]', 'B', 'ABCD', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1787, 335, 10342, '3.习近平新时代中国特色社会主义思想的“十四个坚持”包括( )', 2, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1004,\"questionId\":10342,\"option\":\"A\",\"description\":\"坚持党对一切工作的领导\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1005,\"questionId\":10342,\"option\":\"B\",\"description\":\" 坚持以人民为中心\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1006,\"questionId\":10342,\"option\":\"C\",\"description\":\"坚持全面深化改革\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1007,\"questionId\":10342,\"option\":\"D\",\"description\":\"坚持全面从严治党\",\"isOk\":1}]', 'C', 'ABCD', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1788, 335, 10352, '改革开放是中国特色社会主义的根本任务', 3, '[{\"option\":\"Y\",\"description\":\"正确\"},{\"option\":\"N\",\"description\":\"错误\"}]', 'N', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1789, 352, 10329, '干什么1111?', 2, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":945,\"questionId\":10329,\"option\":\"A\",\"description\":\"111\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":946,\"questionId\":10329,\"option\":\"B\",\"description\":\"222\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":947,\"questionId\":10329,\"option\":\"C\",\"description\":\"333\",\"isOk\":0},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":948,\"questionId\":10329,\"option\":\"D\",\"description\":\"444\",\"isOk\":0}]', 'ABCD', 'AB', 'N', '11', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1790, 352, 10322, '学习思想道德修养与法律基础课程的意义包括()', 2, '[{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":941,\"questionId\":10322,\"option\":\"A\",\"description\":\"有助于大学生认识立志、树德和做人的道理\",\"isOk\":0},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":942,\"questionId\":10322,\"option\":\"B\",\"description\":\"有助于大学生掌握丰富的思想道德和法律知识\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":943,\"questionId\":10322,\"option\":\"C\",\"description\":\"有助于大学生摆正德与才的位置\",\"isOk\":1},{\"createBy\":\"1\",\"createByUserName\":null,\"createTime\":\"2025-11-08 15:12:15\",\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":944,\"questionId\":10322,\"option\":\"D\",\"description\":\"有助于大学生提高法律实务能力\",\"isOk\":0}]', 'ABCD', 'BC', 'N', '2', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1791, 341, 10351, '道德是靠国家强制力保证实施的', 1, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1026,\"questionId\":10351,\"option\":\"A\",\"description\":\"对\",\"isOk\":0},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1027,\"questionId\":10351,\"option\":\"B\",\"description\":\"错\",\"isOk\":1}]', '', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1792, 341, 10350, '全面依法治国的总目标是建设社会主义法治国家', 1, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1024,\"questionId\":10350,\"option\":\"A\",\"description\":\"对\",\"isOk\":0},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1025,\"questionId\":10350,\"option\":\"B\",\"description\":\"错\",\"isOk\":1}]', '', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1793, 341, 10343, '党的十九大提出的“四个伟大”是指', 2, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1008,\"questionId\":10343,\"option\":\"A\",\"description\":\"伟大斗争\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1009,\"questionId\":10343,\"option\":\"B\",\"description\":\"伟大工程\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1010,\"questionId\":10343,\"option\":\"C\",\"description\":\"伟大事业\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1011,\"questionId\":10343,\"option\":\"D\",\"description\":\"伟大梦想\",\"isOk\":1}]', '', 'ABCD', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1794, 341, 10342, '3.习近平新时代中国特色社会主义思想的“十四个坚持”包括( )', 2, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1004,\"questionId\":10342,\"option\":\"A\",\"description\":\"坚持党对一切工作的领导\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1005,\"questionId\":10342,\"option\":\"B\",\"description\":\" 坚持以人民为中心\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1006,\"questionId\":10342,\"option\":\"C\",\"description\":\"坚持全面深化改革\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1007,\"questionId\":10342,\"option\":\"D\",\"description\":\"坚持全面从严治党\",\"isOk\":1}]', '', 'ABCD', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1795, 341, 10352, '改革开放是中国特色社会主义的根本任务', 3, '[{\"option\":\"Y\",\"description\":\"正确\"},{\"option\":\"N\",\"description\":\"错误\"}]', '', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1796, 354, 10351, '道德是靠国家强制力保证实施的', 1, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1026,\"questionId\":10351,\"option\":\"A\",\"description\":\"对\",\"isOk\":0},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1027,\"questionId\":10351,\"option\":\"B\",\"description\":\"错\",\"isOk\":1}]', 'A', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1797, 354, 10350, '全面依法治国的总目标是建设社会主义法治国家', 1, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1024,\"questionId\":10350,\"option\":\"A\",\"description\":\"对\",\"isOk\":0},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1025,\"questionId\":10350,\"option\":\"B\",\"description\":\"错\",\"isOk\":1}]', 'A', 'B', 'N', '5', '0'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1798, 354, 10343, '党的十九大提出的“四个伟大”是指', 2, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1008,\"questionId\":10343,\"option\":\"A\",\"description\":\"伟大斗争\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1009,\"questionId\":10343,\"option\":\"B\",\"description\":\"伟大工程\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1010,\"questionId\":10343,\"option\":\"C\",\"description\":\"伟大事业\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1011,\"questionId\":10343,\"option\":\"D\",\"description\":\"伟大梦想\",\"isOk\":1}]', 'ABCD', 'ABCD', 'Y', '5', '5'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1799, 354, 10342, '3.习近平新时代中国特色社会主义思想的“十四个坚持”包括( )', 2, '[{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1004,\"questionId\":10342,\"option\":\"A\",\"description\":\"坚持党对一切工作的领导\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1005,\"questionId\":10342,\"option\":\"B\",\"description\":\" 坚持以人民为中心\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1006,\"questionId\":10342,\"option\":\"C\",\"description\":\"坚持全面深化改革\",\"isOk\":1},{\"createBy\":null,\"createByUserName\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"remark\":null,\"keyword\":null,\"sourceVal\":null,\"id\":1007,\"questionId\":10342,\"option\":\"D\",\"description\":\"坚持全面从严治党\",\"isOk\":1}]', 'ABCD', 'ABCD', 'Y', '5', '5'); INSERT INTO `base_exam_student_result` (`id`, `exam_student_id`, `question_id`, `question_title`, `question_type`, `question_option`, `student_answer`, `question_answer`, `use_result`, `mark`, `use_mark`) VALUES (1800, 354, 10352, '改革开放是中国特色社会主义的根本任务', 3, '[{\"option\":\"Y\",\"description\":\"正确\"},{\"option\":\"N\",\"description\":\"错误\"}]', 'Y', 'B', 'N', '5', '0'); COMMIT; -- ---------------------------- -- Table structure for base_homework -- ---------------------------- DROP TABLE IF EXISTS `base_homework`; CREATE TABLE `base_homework` ( `id` bigint NOT NULL AUTO_INCREMENT, `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `title` varchar(512) DEFAULT NULL COMMENT '作业名称', `instructions` varchar(255) DEFAULT NULL COMMENT '作业要求', `score` double DEFAULT NULL COMMENT '作业成绩', `status` int DEFAULT NULL COMMENT '状态0-草稿1-发布', `single_num` int DEFAULT NULL COMMENT '单选题数量', `single_mark` int DEFAULT NULL COMMENT '单选题分数', `multiple_num` int DEFAULT NULL COMMENT '多选题数量', `multiple_mark` int DEFAULT NULL COMMENT '多选题分数', `estimate_num` int DEFAULT NULL COMMENT '判断题数量', `estimate_mark` int DEFAULT NULL COMMENT '判断题分数', `question_count` int DEFAULT NULL COMMENT '试题数量', `is_del` int DEFAULT '0', `state` int DEFAULT NULL, `remark` varchar(255) DEFAULT NULL, `create_by` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='作业基本信息表'; -- ---------------------------- -- Records of base_homework -- ---------------------------- BEGIN; INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, '20251222日思想政治理论100题作业', '

3333

', 15, 1, 1, 5, 1, 5, 1, 5, 3, 0, NULL, NULL, '1', '2025-12-02 10:32:18', '1', '2025-12-22 16:07:05'); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 1, '2222工aaaa', '

222222aaaaa

', 46, 1, 3, 15, 3, 21, 2, 10, 8, 0, NULL, NULL, '1', '2025-12-02 14:25:55', '1', '2025-12-02 15:19:51'); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, '3333', '

3333

', 45, 1, 3, 15, 3, 15, 3, 15, 9, 0, NULL, NULL, '1', '2025-12-02 15:24:53', NULL, NULL); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, 1, '我的测试001', '

我的测试001

', 35, 1, 3, 15, 2, 10, 2, 10, 7, 0, NULL, NULL, '110', '2025-12-02 17:43:34', NULL, NULL); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 1, '我的作业02', '

我的作业02

', 42, 1, 3, 15, 3, 12, 3, 15, 9, 0, NULL, NULL, '110', '2025-12-03 11:19:55', NULL, NULL); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 17, '第一个作业', '

第一个作业第一个作业第一个作业第一个作业第一个作业

第一个作业

第一个作业

第一个作业

第一个作业

第一个作业

', 30, 1, 2, 10, 2, 10, 2, 10, 6, 0, NULL, NULL, '123', '2025-12-04 10:30:06', '123', '2025-12-04 10:30:28'); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (9, 17, '龙小孟发布的作业2', '

发生发射点发发生发射点发

发生发射点发

发生发射点发

发生发射点发

发生发射点发

发生发射点发

', 32, 1, 7, 32, 0, 0, 0, 0, 7, 0, NULL, NULL, '123', '2025-12-08 18:09:35', NULL, NULL); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (10, 17, '测试作业44444', '

测试作业44444

测试作业44444

测试作业44444

测试作业44444

测试作业44444

', 15, 1, 3, 15, 0, 0, 0, 0, 3, 0, NULL, NULL, '123', '2025-12-09 15:32:41', NULL, NULL); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (11, 17, '作业1', '

11111

', 32, 1, 4, 32, 0, 0, 0, 0, 4, 0, NULL, NULL, '127', '2025-12-11 16:12:57', NULL, NULL); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (12, 17, '作业2', '

sadfsdf

', 21, 1, 0, 0, 3, 21, 0, 0, 3, 0, NULL, NULL, '127', '2025-12-11 16:33:42', NULL, NULL); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (13, 17, '作业3', '

1212

', 29, 1, 0, 0, 0, 0, 7, 29, 7, 0, NULL, NULL, '127', '2025-12-12 10:50:00', NULL, NULL); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (14, 1, '1215作业', '

', 25, 1, 3, 15, 1, 5, 1, 5, 5, 0, NULL, NULL, '1', '2025-12-15 15:03:18', NULL, NULL); INSERT INTO `base_homework` (`id`, `sch_id`, `title`, `instructions`, `score`, `status`, `single_num`, `single_mark`, `multiple_num`, `multiple_mark`, `estimate_num`, `estimate_mark`, `question_count`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (15, 1, '11122121', '

12121212

', 2, 1, 1, 2, 0, 0, 0, 0, 1, 0, NULL, NULL, '2', '2025-12-22 16:33:28', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_homework_class -- ---------------------------- DROP TABLE IF EXISTS `base_homework_class`; CREATE TABLE `base_homework_class` ( `id` bigint NOT NULL AUTO_INCREMENT, `homework_id` bigint DEFAULT NULL COMMENT '作业ID', `class_id` bigint DEFAULT NULL COMMENT '班级ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='作业班级关系表\n'; -- ---------------------------- -- Records of base_homework_class -- ---------------------------- BEGIN; INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (30, 4, 5); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (31, 4, 6); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (32, 4, 8); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (33, 5, 9); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (34, 5, 8); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (35, 6, 5); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (36, 6, 8); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (37, 6, 9); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (38, 7, 5); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (39, 7, 6); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (40, 7, 8); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (41, 7, 9); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (43, 8, 25); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (44, 9, 25); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (45, 10, 25); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (46, 11, 25); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (47, 12, 26); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (48, 13, 25); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (49, 14, 5); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (50, 3, 5); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (51, 3, 6); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (52, 3, 8); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (53, 3, 9); INSERT INTO `base_homework_class` (`id`, `homework_id`, `class_id`) VALUES (54, 15, 5); COMMIT; -- ---------------------------- -- Table structure for base_homework_question -- ---------------------------- DROP TABLE IF EXISTS `base_homework_question`; CREATE TABLE `base_homework_question` ( `id` bigint NOT NULL AUTO_INCREMENT, `homework_id` bigint DEFAULT NULL COMMENT '作业ID', `question_id` int DEFAULT NULL COMMENT '问题主键', `question_marks` int DEFAULT NULL COMMENT '问题分数', `question_sort_by` int DEFAULT NULL COMMENT '问题排序', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='作业试题'; -- ---------------------------- -- Records of base_homework_question -- ---------------------------- BEGIN; INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (49, 4, 10347, 5, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (50, 4, 10346, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (51, 4, 10339, 5, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (52, 4, 10329, 11, 4); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (53, 4, 10340, 5, 5); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (54, 4, 10341, 5, 6); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (55, 4, 10348, 5, 7); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (56, 4, 10349, 5, 8); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (57, 5, 10350, 5, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (58, 5, 10351, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (59, 5, 10347, 5, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (60, 5, 10343, 5, 4); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (61, 5, 10342, 5, 5); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (62, 5, 10341, 5, 6); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (63, 5, 10352, 5, 7); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (64, 5, 10349, 5, 8); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (65, 5, 10348, 5, 9); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (66, 6, 10350, 5, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (67, 6, 10351, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (68, 6, 10347, 5, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (69, 6, 10341, 5, 4); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (70, 6, 10342, 5, 5); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (71, 6, 10348, 5, 6); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (72, 6, 10349, 5, 7); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (73, 7, 10347, 5, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (74, 7, 10339, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (75, 7, 10337, 5, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (76, 7, 10342, 5, 4); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (77, 7, 10340, 5, 5); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (78, 7, 10322, 2, 6); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (79, 7, 10352, 5, 7); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (80, 7, 10345, 5, 8); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (81, 7, 10344, 5, 9); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (88, 8, 10351, 5, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (89, 8, 10350, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (90, 8, 10343, 5, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (91, 8, 10342, 5, 4); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (92, 8, 10352, 5, 5); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (93, 8, 10349, 5, 6); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (94, 9, 10355, 2, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (95, 9, 10351, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (96, 9, 10350, 5, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (97, 9, 10347, 5, 4); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (98, 9, 10346, 5, 5); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (99, 9, 10339, 5, 6); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (100, 9, 10338, 5, 7); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (101, 10, 10351, 5, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (102, 10, 10350, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (103, 10, 10347, 5, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (104, 11, 10355, 2, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (105, 11, 10354, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (106, 11, 10353, 20, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (107, 11, 10351, 5, 4); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (108, 12, 10343, 5, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (109, 12, 10341, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (110, 12, 10329, 11, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (111, 13, 10352, 5, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (112, 13, 10349, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (113, 13, 10348, 5, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (114, 13, 10345, 5, 4); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (115, 13, 10344, 5, 5); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (116, 13, 10323, 2, 6); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (117, 13, 10320, 2, 7); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (118, 14, 10351, 5, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (119, 14, 10350, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (120, 14, 10347, 5, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (121, 14, 10343, 5, 4); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (122, 14, 10352, 5, 5); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (123, 3, 10350, 5, 1); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (124, 3, 10341, 5, 2); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (125, 3, 10349, 5, 3); INSERT INTO `base_homework_question` (`id`, `homework_id`, `question_id`, `question_marks`, `question_sort_by`) VALUES (126, 15, 10355, 2, 1); COMMIT; -- ---------------------------- -- Table structure for base_homework_student -- ---------------------------- DROP TABLE IF EXISTS `base_homework_student`; CREATE TABLE `base_homework_student` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'ID', `sch_id` bigint NOT NULL COMMENT '学校ID', `homework_id` bigint NOT NULL COMMENT '作业ID', `student_id` bigint NOT NULL COMMENT '学生ID', `full_mark` int DEFAULT '100' COMMENT '试卷分数', `student_mark` int DEFAULT NULL COMMENT '用户分数', `start_exam_time` datetime DEFAULT NULL COMMENT '考试时间', `end_exam_time` datetime DEFAULT NULL COMMENT '交卷时间', `exam_status` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '1' COMMENT '考试状态1-未进行2-进行中 3-已提交', `cheating_num` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '0' COMMENT '作弊次数', `use_times` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '答题耗时', `status` varchar(10) DEFAULT '0' COMMENT '状态标识', `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '修改人', `update_time` datetime DEFAULT NULL COMMENT '修改时间', `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), KEY `index_sch_id` (`sch_id`), KEY `index_plan_id` (`homework_id`) USING BTREE, KEY `index_student_id` (`student_id`) ) ENGINE=InnoDB AUTO_INCREMENT=369 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='学生作业'; -- ---------------------------- -- Records of base_homework_student -- ---------------------------- BEGIN; INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (316, 1, 4, 2, 100, NULL, NULL, NULL, '1', '0', NULL, '0', 'admin', '2025-12-02 15:19:52', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (317, 1, 4, 7, 100, NULL, NULL, NULL, '1', '0', NULL, '0', 'admin', '2025-12-02 15:19:52', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (318, 1, 5, 1, 100, 0, NULL, '2025-12-08 15:48:28', '3', '0', NULL, '0', 'admin', '2025-12-02 15:24:54', NULL, '2025-12-08 15:48:28', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (319, 1, 5, 2, 100, NULL, NULL, NULL, '1', '0', NULL, '0', 'admin', '2025-12-02 15:24:54', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (320, 1, 5, 4, 100, NULL, NULL, NULL, '1', '0', NULL, '0', 'admin', '2025-12-02 15:24:54', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (321, 1, 5, 5, 100, NULL, NULL, NULL, '1', '0', NULL, '0', 'admin', '2025-12-02 15:24:54', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (322, 1, 5, 6, 100, NULL, NULL, NULL, '1', '0', NULL, '0', 'admin', '2025-12-02 15:24:54', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (323, 1, 5, 7, 100, NULL, NULL, NULL, '1', '0', NULL, '0', 'admin', '2025-12-02 15:24:54', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (324, 1, 6, 2, 35, 10, NULL, '2025-12-04 11:42:05', '3', '0', NULL, '0', '18111111111', '2025-12-02 17:43:34', NULL, '2025-12-04 11:42:05', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (325, 1, 6, 7, 35, NULL, NULL, NULL, '1', '0', NULL, '0', '18111111111', '2025-12-02 17:43:34', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (326, 1, 6, 1, 35, 0, NULL, '2025-12-08 15:35:45', '3', '0', NULL, '0', '18111111111', '2025-12-02 17:43:34', NULL, '2025-12-08 15:35:45', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (327, 1, 6, 3, 35, 15, NULL, '2026-01-11 21:48:01', '3', '0', NULL, '0', '18111111111', '2025-12-02 17:43:34', NULL, '2026-01-11 21:48:01', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (328, 1, 6, 4, 35, NULL, NULL, NULL, '1', '0', NULL, '0', '18111111111', '2025-12-02 17:43:35', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (329, 1, 6, 5, 35, NULL, NULL, NULL, '1', '0', NULL, '0', '18111111111', '2025-12-02 17:43:35', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (330, 1, 6, 6, 35, NULL, NULL, NULL, '1', '0', NULL, '0', '18111111111', '2025-12-02 17:43:35', NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (331, 1, 7, 2, 42, 20, NULL, '2025-12-03 16:39:17', '3', '0', NULL, '0', NULL, NULL, NULL, '2025-12-03 16:39:17', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (332, 1, 7, 7, 42, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (333, 1, 7, 1, 42, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (334, 1, 7, 3, 42, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (335, 1, 7, 4, 42, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (336, 1, 7, 5, 42, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (337, 1, 7, 6, 42, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (338, 17, 8, 10, 30, 5, NULL, '2025-12-04 15:12:34', '3', '0', NULL, '0', NULL, NULL, NULL, '2025-12-04 15:12:34', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (339, 17, 9, 10, 32, 17, NULL, '2025-12-08 18:11:05', '3', '0', NULL, '0', NULL, NULL, NULL, '2025-12-08 18:11:05', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (340, 17, 9, 15, 32, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (341, 17, 9, 18, 32, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (342, 17, 10, 10, 15, 5, NULL, '2025-12-12 09:45:22', '3', '0', NULL, '0', NULL, NULL, NULL, '2025-12-12 09:45:22', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (343, 17, 10, 15, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (344, 17, 10, 18, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (345, 17, 11, 10, 32, 7, NULL, '2025-12-12 09:44:51', '3', '0', NULL, '0', NULL, NULL, NULL, '2025-12-12 09:44:51', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (346, 17, 11, 15, 32, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (347, 17, 11, 18, 32, 2, NULL, '2025-12-18 18:12:09', '3', '0', NULL, '0', NULL, NULL, NULL, '2025-12-18 18:12:09', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (348, 17, 12, 11, 21, 0, NULL, '2025-12-12 10:07:25', '3', '0', NULL, '0', NULL, NULL, NULL, '2025-12-12 10:07:25', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (349, 17, 12, 12, 21, 5, NULL, '2025-12-12 10:17:04', '3', '0', NULL, '0', NULL, NULL, NULL, '2025-12-12 10:17:04', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (350, 17, 12, 13, 21, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (351, 17, 13, 10, 29, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (352, 17, 13, 15, 29, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (353, 17, 13, 18, 29, 7, NULL, '2025-12-18 18:10:30', '3', '0', NULL, '0', NULL, NULL, NULL, '2025-12-18 18:10:30', NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (354, 1, 14, 2, 25, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (355, 1, 14, 17, 25, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (356, 1, 3, 2, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (357, 1, 3, 17, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (358, 1, 3, 20, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (359, 1, 3, 21, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (360, 1, 3, 7, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (361, 1, 3, 1, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (362, 1, 3, 3, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (363, 1, 3, 4, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (364, 1, 3, 5, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (365, 1, 3, 6, 15, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (366, 1, 15, 2, 2, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (367, 1, 15, 17, 2, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_homework_student` (`id`, `sch_id`, `homework_id`, `student_id`, `full_mark`, `student_mark`, `start_exam_time`, `end_exam_time`, `exam_status`, `cheating_num`, `use_times`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (368, 1, 15, 20, 2, NULL, NULL, NULL, '1', '0', NULL, '0', NULL, NULL, NULL, NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_homework_student_result -- ---------------------------- DROP TABLE IF EXISTS `base_homework_student_result`; CREATE TABLE `base_homework_student_result` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID', `homework_student_id` int DEFAULT NULL COMMENT '学生作业ID', `question_id` int DEFAULT NULL COMMENT '问题主键', `student_answer` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '学生答案', `use_result` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '0' COMMENT '答题结果', `use_mark` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '答题得分', PRIMARY KEY (`id`), KEY `index_exam_student_id` (`homework_student_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1878 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='学生作业结果'; -- ---------------------------- -- Records of base_homework_student_result -- ---------------------------- BEGIN; INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1788, 331, 10347, 'A', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1789, 331, 10339, 'A', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1790, 331, 10337, 'A', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1791, 331, 10342, 'AB', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1792, 331, 10340, 'AB', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1793, 331, 10322, 'AB', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1794, 331, 10352, 'Y', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1795, 331, 10345, 'N', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1796, 331, 10344, 'Y', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1797, 324, 10350, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1798, 324, 10351, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1799, 324, 10347, 'A', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1800, 324, 10341, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1801, 324, 10342, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1802, 324, 10348, 'Y', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1803, 324, 10349, 'Y', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1804, 338, 10351, 'B', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1805, 338, 10350, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1806, 338, 10343, 'C', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1807, 338, 10342, 'B', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1808, 338, 10352, 'Y', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1809, 338, 10349, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1810, NULL, 10350, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1811, NULL, 10351, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1812, NULL, 10347, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1813, NULL, 10341, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1814, NULL, 10342, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1815, NULL, 10348, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1816, NULL, 10349, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1817, NULL, 10350, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1818, NULL, 10351, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1819, NULL, 10347, 'A', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1820, NULL, 10341, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1821, NULL, 10342, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1822, NULL, 10348, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1823, NULL, 10349, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1824, 326, 10350, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1825, 326, 10351, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1826, 326, 10347, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1827, 326, 10341, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1828, 326, 10342, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1829, 326, 10348, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1830, 326, 10349, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1831, 318, 10350, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1832, 318, 10351, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1833, 318, 10347, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1834, 318, 10343, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1835, 318, 10342, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1836, 318, 10341, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1837, 318, 10352, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1838, 318, 10349, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1839, 318, 10348, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1840, 339, 10355, 'A', '1', '2'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1841, 339, 10351, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1842, 339, 10350, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1843, 339, 10347, 'A', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1844, 339, 10346, 'A', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1845, 339, 10339, 'A', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1846, 339, 10338, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1847, 345, 10355, 'A', '1', '2'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1848, 345, 10354, 'B', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1849, 345, 10353, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1850, 345, 10351, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1851, 342, 10351, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1852, 342, 10350, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1853, 342, 10347, 'A', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1854, 348, 10343, 'A,B', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1855, 348, 10341, 'A,B', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1856, 348, 10329, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1857, 349, 10343, 'A,B,C,D', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1858, 349, 10341, 'A,B,C,D', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1859, 349, 10329, 'A,B,C,D', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1860, 353, 10352, 'Y', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1861, 353, 10349, 'Y', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1862, 353, 10348, 'Y', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1863, 353, 10345, 'Y', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1864, 353, 10344, 'Y', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1865, 353, 10323, 'N', '1', '2'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1866, 353, 10320, '', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1867, 347, 10355, 'A', '1', '2'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1868, 347, 10354, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1869, 347, 10353, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1870, 347, 10351, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1871, 327, 10350, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1872, 327, 10351, 'A', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1873, 327, 10347, 'A', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1874, 327, 10341, 'A,B,C,D', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1875, 327, 10342, 'A,B,C,D', '1', '5'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1876, 327, 10348, 'Y', '0', '0'); INSERT INTO `base_homework_student_result` (`id`, `homework_student_id`, `question_id`, `student_answer`, `use_result`, `use_mark`) VALUES (1877, 327, 10349, 'Y', '1', '5'); COMMIT; -- ---------------------------- -- Table structure for base_message -- ---------------------------- DROP TABLE IF EXISTS `base_message`; CREATE TABLE `base_message` ( `id` bigint NOT NULL AUTO_INCREMENT, `sch_id` bigint DEFAULT NULL COMMENT '院校ID,当msg_type=2时有用', `title` varchar(255) DEFAULT NULL COMMENT '标题', `content` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '内容', `msg_type` smallint DEFAULT NULL COMMENT '消息类型:1-系统;2-通知公告;3-思政热点', `msg_category` smallint DEFAULT NULL COMMENT '消息类别(当msg_type=1时可用):1-系统消息;2-服务消息', `hotspot_cover_img_path` varchar(255) DEFAULT NULL COMMENT '热点缩略图', `hotsport_source` varchar(255) DEFAULT NULL COMMENT '热点来源', `publish_time` datetime DEFAULT NULL COMMENT '发布时间', `send_type` smallint DEFAULT NULL COMMENT '发送类型:1-即时;2-指定时间', `plan_send_time` datetime DEFAULT NULL COMMENT '计划发送时间', `actual_send_time` datetime DEFAULT NULL COMMENT '实际发送时间', `send_scope` smallint DEFAULT NULL COMMENT '发送范围:1-全校师生;2-全校老师;3-全校学生', `msg_state` smallint DEFAULT NULL COMMENT '消息状态:0-草稿;1-已发布', `send_state` smallint DEFAULT NULL COMMENT '发送状态:0-未发送;1-已发送;', `view_count` bigint DEFAULT '0' COMMENT '阅读量,消息类型为思政热点(msg_type=3)时有效', `is_del` int DEFAULT '0', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统消息、通知公告、思政热点'; -- ---------------------------- -- Records of base_message -- ---------------------------- BEGIN; INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 2, 'n1', '

123

', 2, NULL, NULL, NULL, '2025-11-14 16:33:03', 2, '2025-11-14 18:00:26', '2025-11-15 12:38:01', 1, 1, 1, NULL, 0, '101', '2025-11-14 16:33:03', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 1, 'sys1', '

12

', 1, 1, NULL, NULL, '2025-11-14 16:35:52', 2, '2025-11-14 18:00:49', '2025-11-15 12:38:02', NULL, 1, 1, NULL, 0, '1', '2025-11-14 16:35:52', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, 'hot1', '

11

', 3, NULL, '', '新华网', '2025-11-14 16:40:34', 2, '2025-11-14 18:00:49', '2025-11-15 12:44:11', NULL, 1, 1, NULL, 0, '1', '2025-11-14 16:40:34', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 1, '系统维护通知', '

本系统将于今晚23:00-次日02:00进行维护升级,期间可能无法正常访问,请提前做好准备。

', 1, 1, NULL, NULL, '2025-11-17 15:36:02', 1, NULL, '2025-11-17 15:36:04', NULL, 1, 1, NULL, 0, '1', '2025-11-17 15:36:02', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, '关于开展春季学期思政学习的通知', '

根据学校安排,春季学期思政学习将于3月20日开始,请各位同学按时完成学习任务,并参加线上测试。

', 1, 2, NULL, NULL, '2025-11-17 15:37:04', 2, NULL, NULL, NULL, 1, 0, NULL, 0, '1', '2025-11-17 15:37:04', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, 2, '2025年清明节放假安排通知', '

根据国家法定节假日安排,结合学校实际,2025年清明节放假时间为4月4日至6日,共3天。4月7日(星期一)正常上课。

', 2, NULL, NULL, NULL, '2025-11-17 16:51:49', 1, NULL, '2025-11-17 16:51:50', 1, 1, 1, NULL, 0, '118', '2025-11-17 16:51:49', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 2, '2025年清明节放假安排通知22', '

根据国家法定节假日安排,结合学校实际,2025年清明节放假时间为4月4日至6日,共3天。4月7日(星期一)正常上课。

', 2, NULL, NULL, NULL, '2025-11-17 16:52:27', 2, NULL, NULL, 1, 1, 0, NULL, 0, '118', '2025-11-17 16:52:27', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 2, '2025年清明节放假安排通知33', '

2025年清明节放假安排通知22

2025年清明节放假安排通知22

', 2, NULL, NULL, NULL, '2025-11-17 17:06:33', 1, NULL, '2025-11-17 17:06:33', 1, 1, 1, NULL, 0, '100', '2025-11-17 17:06:33', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (9, 2, ' 2025年清明节放假安排通知44', '

2025年清明节放假安排通知44

', 2, NULL, NULL, NULL, '2025-11-17 17:56:00', 1, NULL, '2025-11-17 17:56:01', 1, 1, 1, NULL, 0, '100', '2025-11-17 17:56:00', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (10, 2, '2025年清明节放假安排通知-定时发送', '

2025年清明节放假安排通知-定时发送

2025年清明节放假安排通知-定时发送

2025年清明节放假安排通知-定时发送2025年清明节放假安排通知-定时发送

2025年清明节放假安排通知-定时发送2025年清明节放假安排通知-定时发送2025年清明节放假安排通知-定时发送2025年清明节放假安排通知-定时发送

', 2, NULL, NULL, NULL, '2025-11-17 18:27:20', 2, NULL, NULL, 1, 1, 0, NULL, 0, '100', '2025-11-17 18:27:20', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (11, 2, '2025年清明节放假安排通知-立即发送', '

2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送

', 2, NULL, NULL, NULL, '2025-11-17 18:27:46', 1, NULL, '2025-11-17 18:27:46', 1, 1, 1, NULL, 0, '100', '2025-11-17 18:27:46', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (12, 2, '武林外传', '

以荒诞幽默解构武侠世界,用客栈方寸之地演绎江湖百态。这部披着古装外衣的情景喜剧,实则是对传统武侠文化的温柔颠覆。《武林外传》解构了传统武侠的宏大叙事,在插科打诨间道尽生活真谛——江湖不在远方,而在每个有哭有笑、相互温暖的日子里。这种后现代的解构与温情,让它成为永不褪色的经典。

', 2, NULL, NULL, NULL, '2025-11-18 09:42:49', 1, NULL, '2025-11-18 09:42:50', 2, 1, 1, NULL, 0, '100', '2025-11-18 09:42:49', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (13, 2, '爱情公寓', '

好看是确实好看,感觉很喜欢婉瑜宛瑜,展博和美嘉。它确实赶上了好的时代,让我在事情在网络发酵前便与爱情公寓产生了羁绊。 现在如果再面对同样的话语,我或许会第一次也是最后一次说出那句:无所谓,我会溺爱。 永远不支持抄袭融梗,但我允许自己有一点私心。

', 2, NULL, NULL, NULL, '2025-11-18 09:43:36', 1, NULL, '2025-11-18 09:43:36', 3, 1, 1, NULL, 0, '100', '2025-11-18 09:43:36', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (14, 2, '家有儿女', '

演员的微表情处理得很到位,把角色的情绪传递得很准。永远会记得温婉女孩小雪,顽皮学渣刘星,邻家弟弟小雨,风趣老爸夏东海,严厉辣妈刘梅。承载着一代人的回忆啊!现在再次重温依旧好看,但是刘梅已经淡出圈子,高亚麟转向幕后,小雪还在不断努力,刘星亦是如此,不知道他们再看这部剧时会有什么感想呢。

', 2, NULL, NULL, NULL, '2025-11-18 09:44:33', 1, NULL, '2025-11-18 09:44:34', 1, 1, 1, NULL, 0, '100', '2025-11-18 09:44:33', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (17, 2, '什么是AAA?', '

AAA是网络访问控制的一种安全管理框架,它决定哪些的用户能够访问网络,以及用户能够访问哪些资源或者得到哪些服务。本文从AAA的三要素、工作原理、使用的协议和应用这几个方面展开介绍。

', 2, NULL, NULL, NULL, '2025-11-18 10:26:02', 2, '2025-11-18 10:34:00', '2025-11-18 10:35:00', 1, 1, 1, NULL, 0, '100', '2025-11-18 10:26:02', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (18, 2, 'AAA的三个要素', '

第一个A:认证

认证用来识别访问网络的用户的身份,判断访问者是否为合法的用户。

\"认证\"
认证

AAA服务器将用户的身份验证凭据与存储在数据库中的用户凭据进行比较。如果凭据匹配,则身份认证成功,并且授予用户访问网络的权限。如果凭据不匹配,则身份认证失败,并且网络访问将被拒绝。用户的身份认证凭据通常使用:

', 2, NULL, NULL, NULL, '2025-11-18 10:27:28', 2, '2025-11-18 10:34:00', '2025-11-18 10:35:01', 2, 1, 1, NULL, 0, '100', '2025-11-18 10:27:11', '1', '2025-11-18 10:27:28'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (19, 1, '第三个A:计费', '

计费用来记录用户使用网络服务过程中的相关操作,简单说就是:什么人、什么时间、做了什么事。

\"计费\"
计费

记录的内容包括使用的服务类型、起始时间、数据流量等,用于收集和记录用户对网络资源的使用情况,并可以实现针对时间、流量的计费需求,也对网络起到监控作用。

AAA是如何工作的?

', 1, 2, NULL, NULL, '2025-11-18 10:29:32', 2, '2025-11-18 10:34:00', '2025-11-18 10:35:02', NULL, 1, 1, NULL, 0, '1', '2025-11-18 10:29:25', '1', '2025-11-18 10:29:32'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (20, 1, 'AAA是如何工作的?', '

AAA采用客户端/服务器结构,这种结构简单、扩展性好,且便于集中管理用户信息。

\"AAA基本框架\"
AAA基本框架

如上图所示,AAA的基本实现流程如下:

  1. 用户访问网络前,首先与AAA客户端建立连接。
  2. AAA客户端负责把用户验证凭据传递给AAA服务器。
  3. AAA服务器根据用户认证凭据进行认证和授权,并将认证和授权结果返回给AAA客户端。
  4. AAA客户端根据服务器的返回结果判断是否允许用户接入。其中:
', 1, 1, NULL, NULL, '2025-11-18 10:37:48', 1, NULL, '2025-11-18 10:37:49', NULL, 1, 1, NULL, 0, '1', '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (21, 1, 'AAA协议有哪些?', '

AAA可以通过多种协议实现认证、授权和计费。


RADIUS

远程身份验证拨号用户服务RADIUS(Remote Authentication Dial-In User Service)是标准协议,基本所有主流设备厂商都支持,所以在实际网络中应用最多。

RADIUS协议可分为认证协议和计费协议,分别通过IETF RFC 2865和RFC 2866定义。由于定义RADIUS协议的时间早于AAA框架模型,所以RADIUS协议并没有将认证和授权分开,而是将认证和授权在同一个流程中进行处理。因此,使用RADIUS协议实现AAA时,用户可能无法知道被拒绝访问的原因是由于密码错误还是因为没有权限。


TACACS、TACACS+和HWTACACS

终端访问控制器控制系统TACACS(Terminal Access Controller Access-Control System),是一种起源于二十世纪八十年代的AAA协议。在之后的发展中,各厂商在TACACS协议的基础上进行了扩展,例如思科公司开发的TACACS+和华为公司开发的HWTACACS。TACACS+和HWTACACS均为私有协议,在发展过程中逐步替代了原来的TACACS协议,并且不再兼容TACACS协议。

HWTACACS协议可以兼容TACACS+协议,HWTACACS协议与TACACS+协议定义的报文结构和报文类型一致,主要区别在于授权和计费报文中携带的属性含义或类型不完全相同。

与RADIUS协议相比,HWTACACS或TACACS+更加适用于登录用户(例如STelnet用户)的身份认证场景。这是由于它在数据传输、加密上安全性更高,同时能够提供命令行鉴权、事件记录等优势功能。


LDAP和AD

轻量级目录存取协议LDAP(Lightweight Directory Access Protocol)是一种基于TCP/IP的目录访问协议。LDAP可以理解为一个数据库,该数据库中可以存储有层次的、有结构、有关联的各种类型的数据,比如:电子邮件地址、人力资源数据、联系人列表等等。LDAP通过绑定和查询操作可以实现认证和授权功能,常用于单点登录场景,例如企业用户只需要在电脑上登录一次,就可以访问多个相互信任的应用系统。

AD(Active Directory)是LDAP的一个应用实例,是Windows操作系统上提供目录服务的组件,用来保存操作系统的用户信息。与LDAP相比,AD将Kerberos协议集成到LDAP认证过程中,利用Kerberos协议的对称密钥体制来提高密码传输的安全性,防止在LDAP认证过程中泄露用户的密码。


HACA

华为敏捷云认证HACA(Huawei Agile Cloud Authentication)是一种基于移动互联网的HTTP 2.0协议,支持Portal认证或MAC优先的Portal认证,主要解决Portal协议无法穿越NAT的问题。当前iMaster NCE-Campus支持作为HACA服务器。


Diameter

Diameter是IETF定义的新一代AAA协议,由RADIUS协议演进而来。Diameter协议克服了RADIUS的许多缺点,例如Diameter协议支持移动IP、多接口和移动代理的认证、授权和计费等。随着Diameter协议及其应用的不断成熟和标准化,它对未来移动通信系统和宽带接入系统的发展将起到巨大的推动作用 。

', 1, 1, NULL, NULL, '2025-11-18 10:38:18', 1, NULL, '2025-11-18 10:38:19', NULL, 1, 1, NULL, 0, '1', '2025-11-18 10:38:18', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (22, 1, 'AAA有哪些应用?', '

根据用户接入的方式不同,AAA在网络中可以划分为以下几种应用:

', 1, 2, NULL, NULL, '2025-11-18 10:38:57', 2, '2025-11-18 10:35:00', '2025-11-18 10:40:01', NULL, 1, 1, NULL, 0, '1', '2025-11-18 10:38:57', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (23, 2, '路由管理简介', '


定义

路由管理指路由设备具有建立,刷新路由表,并根据路由表转发数据包的能力。


目的

路由管理帮助用户认识到设备为了实现数据的转发,路由设备、路由表和路由协议是必不可少的。还可以帮助用户对路由设备,路由表有初步认识,知悉路由协议是用于发现路由,生成路由表,路由表中保存了各种路由协议发现的路由,路由设备用来选择路由,实现数据转发。

', 2, NULL, NULL, NULL, '2025-11-18 10:40:14', 1, NULL, '2025-11-18 10:40:15', 1, 1, 1, NULL, 0, '100', '2025-11-18 10:40:14', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (24, 2, '路由设备', '

路由设备用来进行路由选择和报文转发。路由设备根据收到报文的目的地址选择一条合适的路径,将报文传送到下一个路由设备,路径终端的路由设备负责将报文送交目的主机。路由设备可以为数据传输选择最佳路径。

例如,在图1中,主机A到主机B共经过了3个网络和2台路由设备。路由设备到与它直接相连网络的跳数为0,通过一台路由设备可达的网络的跳数为1,其余以此类推。若一台路由设备通过一个网络与另一台路由设备相连接,则这两台路由设备相隔一个网段,在因特网中认为这两台路由设备相邻。

图1 路由跳数和网段的概念

', 2, NULL, NULL, NULL, '2025-11-18 10:40:40', 1, NULL, '2025-11-18 10:40:41', 1, 1, 1, NULL, 0, '100', '2025-11-18 10:40:40', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (25, 2, '路由协议', '

路由设备的主要功能是路由选择和报文转发。这种功能的实现需用到路由协议。路由协议是路由设备之间维护路由表的规则,用于发现路由,生成路由表,并指导报文转发。


静态路由与动态路由的区别

依据来源的不同,路由可以分为三类:

', 2, NULL, NULL, NULL, '2025-11-18 10:41:07', 1, NULL, '2025-11-18 10:41:07', 1, 1, 1, NULL, 0, '100', '2025-11-18 10:41:07', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (26, 17, '撒旦飞洒地方', '

撒旦士大夫

', 2, NULL, NULL, NULL, '2025-11-20 12:13:58', 1, NULL, '2025-11-20 12:13:58', 3, 1, 1, NULL, 0, '123', '2025-11-20 12:13:58', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (27, 17, '测光大是大非', '

测光大是大非测光大是大非测光大是大非

', 2, NULL, NULL, NULL, '2025-11-20 12:22:37', 1, NULL, '2025-11-20 12:22:37', 3, 1, 1, NULL, 0, '123', '2025-11-20 12:22:37', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (28, 17, '马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫', '

马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫

', 2, NULL, NULL, NULL, '2025-11-21 16:38:04', 1, NULL, '2025-11-21 16:38:04', 1, 1, 1, NULL, 0, '123', '2025-11-21 16:38:04', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (29, 17, '马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫', '

马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫

', 2, NULL, NULL, NULL, '2025-11-21 16:38:58', 1, NULL, '2025-11-21 16:38:58', 1, 1, 1, NULL, 0, '123', '2025-11-21 16:38:58', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (30, 1, '11111', '

2222

', 1, 1, NULL, NULL, '2025-11-24 09:52:23', 1, NULL, '2025-11-24 09:52:28', NULL, 1, 1, NULL, 0, '1', '2025-11-24 09:52:23', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (31, 21, '杨发送的通知公告', '

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

', 2, NULL, NULL, NULL, '2025-12-01 10:38:35', 1, NULL, '2025-12-01 10:38:35', 1, 1, 1, NULL, 1, '133', '2025-12-01 10:38:35', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (32, 21, '杨发送的通知公告', '

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

', 2, NULL, NULL, NULL, '2025-12-01 10:39:35', 2, '2025-12-01 10:50:00', '2025-12-01 10:50:00', 1, 1, 1, NULL, 0, '133', '2025-12-01 10:39:35', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (33, 21, '王发送的通知公告', '

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

', 2, NULL, NULL, NULL, '2025-12-01 10:41:30', 1, NULL, '2025-12-01 10:41:30', 1, 1, 1, NULL, 0, '133', '2025-12-01 10:41:30', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (34, 1, '系统管理员发布的通知公告', '

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

文章指出,从严监督执纪要进一步到位。从严监督执纪是党的自我革命的利器。对违纪违法问题必须坚决处理,霹雳手段决不能少。在从严监督上,要把党内监督和人民监督结合起来,推动各类监督贯通协调。在从严执纪上,要严格标准,将党风党纪硬要求变为硬举措、让铁规矩长出铁牙齿,对不正之风和腐败现象露头就打、严肃查处,向全党释放一严到底、寸步不让的信号,形成有效的震慑效应。

', 1, 1, NULL, NULL, '2025-12-01 10:44:44', 1, NULL, '2025-12-01 10:44:46', NULL, 1, 1, NULL, 0, '1', '2025-12-01 10:44:37', '1', '2025-12-01 10:44:44'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (35, 1, '系统管理员发布的思政热点', '

\"6_维吾尔族服饰_20251201104810A002.png\"

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

文章指出,从严监督执纪要进一步到位。从严监督执纪是党的自我革命的利器。对违纪违法问题必须坚决处理,霹雳手段决不能少。在从严监督上,要把党内监督和人民监督结合起来,推动各类监督贯通协调。在从严执纪上,要严格标准,将党风党纪硬要求变为硬举措、让铁规矩长出铁牙齿,对不正之风和腐败现象露头就打、严肃查处,向全党释放一严到底、寸步不让的信号,形成有效的震慑效应。

', 3, NULL, '/statics/2025/12/01/bg1_20251201104530A001.jpeg', '网络', '2025-12-01 10:48:24', 1, NULL, '2025-12-01 10:48:24', NULL, 1, 1, 8, 0, '1', '2025-12-01 10:48:24', '1', '2025-12-09 14:38:42'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (36, 2, 'aaaa', '

aaaaaaaa

', 2, NULL, NULL, NULL, '2025-12-01 10:58:14', 1, NULL, '2025-12-01 10:58:15', 1, 1, 1, NULL, 0, '100', '2025-12-01 10:58:14', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (37, 1, '龙小孟的测试消息11111', '

龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111

', 1, 1, NULL, NULL, '2025-12-01 15:46:21', 1, NULL, '2025-12-01 15:46:23', NULL, 1, 1, NULL, 0, '1', '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (38, 1, '龙小孟的测试消息222222222', '

龙小孟的测试消息222222222

龙小孟的测试消息222222222

龙小孟的测试消息222222222

', 1, 2, NULL, NULL, '2025-12-01 16:07:44', 2, '2025-12-01 16:20:00', '2025-12-01 16:20:02', NULL, 1, 1, NULL, 0, '1', '2025-12-01 16:07:44', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (39, 1, '121212', '

121212

', 1, 1, NULL, NULL, '2025-12-02 14:04:33', 1, NULL, '2025-12-02 14:04:35', NULL, 1, 1, NULL, 0, '1', '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (40, 1, '222', '

222

', 1, 1, NULL, NULL, '2025-12-02 14:06:10', 2, '2025-12-02 14:17:00', '2025-12-02 14:20:02', NULL, 1, 1, NULL, 0, '1', '2025-12-02 14:06:10', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (41, 21, '杨发送的通知公告3', '

3333333333

', 2, NULL, NULL, NULL, '2025-12-03 15:05:05', 1, NULL, '2025-12-03 15:05:06', 1, 1, 1, NULL, 0, '133', '2025-12-03 15:05:05', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (42, 1, '杨发送的通知公告12', '

111111111111111111111111111111111111111111111111111111111

\"6_维吾尔族服饰_20251206151855A034.png\"

', 3, NULL, '/statics/2025/12/06/bg1_20251206151843A033.jpeg', '网络', '2025-12-06 15:19:12', 1, NULL, '2025-12-06 15:19:12', NULL, 1, 1, 6, 0, '1', '2025-12-06 15:19:12', '0', '2025-12-18 16:47:48'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (43, 1, '深入学习贯彻习近平新时代中国特色社会主义思想,推动思政教育高质量发展', '

\"big_20251208180851A035.jpg\"

近日,全国思政教育工作会议在京召开,会议深入学习贯彻习近平新时代中国特色社会主义思想, 特别是习近平总书记关于教育的重要论述,分析当前思政教育面临的新形势新任务,部署下一阶段 重点工作,为培养担当民族复兴大任的时代新人提供坚强思想政治保证。

会议指出,要坚持以习近平新时代中国特色社会主义思想为指导,全面贯彻党的教育方针,落实 立德树人根本任务,把思想政治工作贯穿教育教学全过程,实现全程育人、全方位育人,努力开创 我国高等教育事业发展新局面。

\"思政课是落实立德树人根本任务的关键课程,办好思政课,最根本的是要全面贯彻党的教育方针, 解决好培养什么人、怎样培养人、为谁培养人这个根本问题。\"

与会专家强调,新时代思政教育要坚持守正创新,既要传承好党的思想政治工作优良传统,又要 积极适应新形势新要求,不断创新教育理念、内容、方法和载体,增强思政教育的针对性和吸引力。 要推动思政小课堂与社会大课堂相结合,引导学生在实践中深化对党的创新理论的理解和把握。


核心要点

会议要求,各地各高校要认真贯彻落实本次会议精神,结合实际制定具体实施方案,切实把思想 和行动统一到党中央决策部署上来。要加强组织领导,健全工作机制,强化督促检查,确保各项 工作任务落到实处、取得实效。

与会代表表示,将以此次会议为契机,进一步增强做好新时代思政教育工作的责任感和使命感, 锐意进取、扎实工作,不断提升思政教育质量和水平,为培养德智体美劳全面发展的社会主义 建设者和接班人作出新的更大贡献。

', 3, NULL, '', '人民日报', '2025-12-08 18:09:58', 1, NULL, '2025-12-08 18:09:58', NULL, 1, 1, 2, 0, '1', '2025-12-08 18:09:58', '0', '2025-12-10 09:45:39'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (44, 1, 'Tailwind CSS 简介', '

Tailwind CSS 是一个实用优先的 CSS 框架,与传统的框架(如 Bootstrap、Foundation)不同,它没有预定义的组件,而是提供了一系列原子化的 CSS 类,允许你直接在 HTML 中应用样式。

Tailwind CSS 是一个工具优先的框架,意味着它提供了大量的预定义类,而不是预设的组件,这使得开发者可以构建几乎任何设计,而不需要编写 CSS。

Tailwind CSS 适合那些喜欢直接在 HTML 中使用类来控制样式的开发者,它使得快速原型制作和开发定制设计变得简单快捷。然而,它的这种\"无预设\"的方法也意味着需要更多的类名记忆和可能的陡峭学习曲线。

\"\"

核心特点:

以下是一个简单的 Tailwind CSS 实例:<div> 元素显示为一个蓝色背景、白色文字、中等内边距和大圆角的框,内容为 \"Hello, Tailwind CSS!\"。

', 3, NULL, '', '菜鸟网', '2025-12-08 18:25:53', 1, NULL, '2025-12-08 18:25:53', NULL, 1, 1, 38, 0, '1', '2025-12-08 18:25:53', '0', '2025-12-15 10:16:02'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (45, 1, 'Tailwind CSS教程', '


谁适合阅读本教程?1

只要您具备 HTML 和 CSS 的基础知识,您就可以阅读本教程,进而开发出自己的网站。在您学习完本教程后,您即可达到使用 Tailwind CSS 开发 Web 项目的中等水平。

阅读本教程前,您需要了解的知识:

在您开始阅读本教程之前,您必须具备 HTML 、 CSS 和 JavaScript 的基础知识。如果您还不了解这些概念,那么建议您先阅读我们的这些教程:

Tailwind CSS 实例

以下是一个简单的 Tailwind CSS 实例:


Tailwind CSS 实例

<div class=\"bg-blue-500 text-white p-4 rounded-lg\"> Hello, Tailwind CSS! </div>
尝试一下 »

以上实例展示了如何通过简单的类名快速定义一个蓝色背景、白色文字、内边距和圆角的卡片。

参考链接

Tailwind CSS 官网:https://tailwindcss.com/

Tailwind CSS 官方文档:https://tailwindcss.com/docs/



', 3, NULL, '', '菜鸟网1', '2025-12-08 18:27:18', 1, NULL, '2025-12-08 18:27:18', NULL, 1, 1, 2, 0, '1', '2025-12-08 18:27:00', '0', '2026-01-14 15:40:19'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (46, 1, 'Tailwind CSS 安装(CDN)1', '

如果只想简单体验,可以直接引入 CDN 链接:

使用官网提供的 CDN 库,地址如下:

<script src=\"https://cdn.tailwindcss.com\"></script>

使用 jsDelivr 的 CDN 库,地址如下:

<link href=\"https://cdn.jsdelivr.net/npm/tailwindcss@3.3.0/dist/tailwind.min.css\" rel=\"stylesheet\">

使用这种方式使用:

使用实例

以下实例输出了 Hello, world!


实例

<!doctype html> <html> <head> <meta charset=\"UTF-8\"> <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"> <script src=\"https://cdn.tailwindcss.com\"></script> </head> <body> <h1 class=\"text-3xl font-bold underline\"> Hello world! </h1> </body> </html>
尝试一下 »

编辑 tailwind.config 对象可以定义自己的配置信息:


实例

<!doctype html> <html> <head> <meta charset=\"UTF-8\"> <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"> <script src=\"https://cdn.tailwindcss.com\"></script> <script> tailwind.config = { theme: { extend: { colors: { clifford: \'#da373d\', } } } } </script> </head> <body> <h1 class=\"text-3xl font-bold underline text-clifford\"> Hello world! </h1> </body> </html>

', 3, NULL, '/statics/2025/12/08/shipin_20251208182909A036.jpg', '菜鸟网1', '2025-12-08 18:29:13', 1, NULL, '2025-12-08 18:29:13', NULL, 1, 1, 7, 0, '1', '2025-12-08 18:27:59', '0', '2025-12-11 10:48:37'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (47, 1, 'Tailwind CSS4 安装(NPM)', '

在开始之前,确保你已经安装了 Node.js 和 npm,你可以通过以下命令检查它们是否已经安装:

node -v\nnpm -v

如果你的系统还不支持 Node.js 及 NPM 可以参考我们的 Node.js 教程

国内使用 npm 速度很慢,你可以使用淘宝定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm:

$ npm install -g cnpm --registry=https://registry.npmmirror.com\n$ npm config set registry https://registry.npmmirror.com

这样就可以使用 cnpm 命令来安装模块了:

$ cnpm install [name]

更多信息可以查阅:http://npm.taobao.org/



安装 Tailwind CSS

与 Tailwind CSS 3 相比较,Tailwind CSS 4 自动检测 HTML 和 JavaScript 等文件,省去了手动配置内容源的麻烦。

npm 安装

从零开始使用 Tailwind CSS 的最简单和最快方法是通过 Tailwind CLI 工具。

通过 npm 安装 在本地项目中安装并配置 Tailwind CSS:

npm install tailwindcss @tailwindcss/cli

1、在 CSS 中导入 Tailwind: 在 CSS 文件中添加 @import \"tailwindcss\";

比如在 src/input.css 文件开头导入:


src/input.css 文件

@import \"tailwindcss\";

2、启动 Tailwind CLI 构建流程:运行 CLI 工具以扫描源文件中的类并构建 CSS。

npx @tailwindcss/cli -i ./src/input.css -o ./src/output.css --watch

3、在 HTML 中开始使用 Tailwind:将编译后的 CSS 文件添加到 <head> 中,并开始使用 Tailwind 的实用类来设置内容的样式。


src/index.html 文件

<!doctype html>
<html>
<head>
<meta charset=\"UTF-8\">
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
<link href=\"./output.css\" rel=\"stylesheet\">
</head>
<body>
<h1 class=\"text-3xl font-bold underline\">
    Hello world!
</h1>
</body>
</html>

作为 Vite 插件安装Vite 是一个现代化的前端构建工具,旨在通过利用现代浏览器的原生 ES 模块支持,提供快速的开发体验。

Vite 详细内容可以参见:Vite 教程

将 Tailwind CSS 作为 Vite 插件安装是将其与 Laravel、SvelteKit、React Router、Nuxt 和 SolidJS 等框架集成的最无缝的方式。

1、安装 Tailwind CSS

通过 npm 安装 tailwindcss 和 @tailwindcss/vite:

npm install tailwindcss @tailwindcss/vite

2、配置 Vite 插件

在 Vite 配置文件 vite.config.ts 中添加 @tailwindcss/vite 插件:


vite.config.ts 文件

import { defineConfig } from \'vite\'
import tailwindcss from \'@tailwindcss/vite\'

export default defineConfig({
  plugins: [
    tailwindcss(),
],
})

3、导入 Tailwind CSS

在的 CSS 文件中添加 @import 以导入 Tailwind CSS:

@import \"tailwindcss\";

4、启动构建流程

运行构建流程,使用 npm run dev 或你在 package.json 文件中配置的其他命令:

npm run dev

5、在 HTML 中开始使用 Tailwind

确保编译后的 CSS 已包含在 <head> 中(框架可能会自动处理),然后开始使用 Tailwind 的实用类来设置内容的样式。


实例

<!doctype html>
<html>
<head>
<meta charset=\"UTF-8\">
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
<link href=\"/src/styles.css\" rel=\"stylesheet\">
</head>
<body>
<h1 class=\"text-3xl font-bold underline\">
    Hello world!
</h1>
</body>
</html>

作为 PostCSS 插件安装

将 Tailwind CSS 作为 PostCSS 插件安装可以将其与 Next.js 和 Angular 等框架无缝结合。

1、安装 Tailwind CSS

通过 npm 安装 tailwindcss、@tailwindcss/postcss 和 postcss。

npm install tailwindcss @tailwindcss/postcss postcss


', 3, NULL, '/statics/2025/12/08/3d_20251208182924A037.jpg', '菜鸟网', '2025-12-08 18:30:05', 1, NULL, '2025-12-08 18:30:05', NULL, 1, 1, 2, 0, '1', '2025-12-08 18:30:05', '0', '2025-12-11 10:48:20'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (48, 1, 'Tailwind CSS 安装(NPM)', '

在开始之前,确保你已经安装了 Node.js 和 npm,你可以通过以下命令检查它们是否已经安装:

node -v\nnpm -v

如果你的系统还不支持 Node.js 及 NPM 可以参考我们的 Node.js 教程

国内使用 npm 速度很慢,你可以使用淘宝定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm:

$ npm install -g cnpm --registry=https://registry.npmmirror.com\n$ npm config set registry https://registry.npmmirror.com

这样就可以使用 cnpm 命令来安装模块了:

$ cnpm install [name]

更多信息可以查阅:http://npm.taobao.org/



安装 Tailwind CSS 3

本章节是 Tailwind CSS 3 的安装方式,,Tailwind CSS 4 安装方式有所改变, 会自动检测 HTML 和 JavaScript 等文件,省去了手动配置内容源的麻烦。详细内容参见:Tailwind CSS4 安装。

通过 npm 安装 在本地项目中安装并配置 Tailwind CSS:

npm install -D tailwindcss\nnpx tailwindcss init

执行以上命令后,会生成一个基础配置文件 tailwind.config.js,供定制使用。

配置模板路径

接下来我们可以在 tailwind.config.js 文件中添加模版的路径:


tailwind.config.js 文件代码:

/** @type {import(\'tailwindcss\').Config} */
module.exports = {
  content: [\"./src/**/*.{html,js}\"], // 根据项目实际文件类型调整
  theme: {
    extend: {},
},
  plugins: [],
}

添加 Tailwind 指令到 CSS 文件

在你的主 CSS 文件 src/input.css(没有就创建它) 中通过 @tailwind 指令添加每一 个Tailwind 功能模块。


src/input.css 文件代码:

@tailwind base;
@tailwind components;
@tailwind utilities;

启动 Tailwind CLI 构建流程运行CLI工具以扫描模板文件中的类并构建CSS。

npx tailwindcss -i ./src/input.css -o ./src/output.css --watch


', 3, NULL, '/statics/2025/12/08/shipin_20251208183045A038.jpg', '人民日报', '2025-12-08 18:31:06', 1, NULL, '2025-12-08 18:31:06', NULL, 1, 1, 5, 0, '1', '2025-12-08 18:31:06', '0', '2025-12-15 10:18:47'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (49, 1, 'Tailwind CSS 基础概念', '

Tailwind CSS 是一个高度可定制的 CSS 框架,它提供了一套预定义的工具类,允许开发者快速构建和设计用户界面。

以下是 Tailwind CSS 的一些基础概念和用法:

概念说明
工具类 (Utility-First)Tailwind CSS 的核心是工具类,用于快速设置样式,直接应用到 HTML 元素上。
响应式前缀使用如 sm:, md:, lg:, xl: 的前缀来控制不同屏幕尺寸下的样式。
颜色和尺寸提供了预定义的颜色(如 bg-red-500)和尺寸(如 text-lg)来快速设置样式。
间距 (Spacing)通过 p-, m-, pt-, pr- 等类控制内边距和外边距。
布局 (Layout)提供 flex, grid, float 等类来实现布局控制。
文本样式包括文本对齐、字体样式、颜色和转换的实用类,如 text-center, font-bold, uppercase
背景和边框提供背景颜色、背景图片、边框样式和颜色的工具类,如 bg-gray-200, border-red-500
悬停和状态使用 hover:, focus:, active: 等前缀为交互状态定义样式。
尺寸 (Sizing)使用 w-, h- 类控制宽度和高度,如 w-64, h-screen
可见性 (Visibility)使用 visible, invisible 等类控制元素的可见性。
栅格系统 (Grid System)提供基于 CSS Grid 的工具类,如 grid, grid-cols-3, col-span-2,实现响应式网格布局。
自定义配置通过 tailwind.config.js 自定义颜色、间距、字体大小等,以适应项目需求。
暗色模式 (Dark Mode)支持暗色模式,通过 dark: 前缀设置样式,并可在配置中启用暗色模式功能。
插件 (Plugins)通过插件扩展功能,添加自定义的工具类或功能。
指令 (Directives)在 CSS 文件中使用 @tailwind 指令引入不同层次的样式,如 base, components, utilities

概念详解

1. 工具类(Utility-First)

Tailwind 的工具类可以让开发者快速定义样式,无需手动编写 CSS。


实例

<div class=\"text-center text-blue-500 font-bold\">
  Tailwind Utility Classes
</div>

尝试一下 »

解析:



2. 响应式前缀

通过前缀设置不同屏幕尺寸下的样式。


实例

<div class=\"bg-red-500 sm:bg-green-500 md:bg-blue-500 lg:bg-yellow-500\">
  Responsive Example
</div>

尝试一下 »

', 3, NULL, '/statics/2025/12/08/kejian_20251208183122A039.png', '菜鸟网', '2025-12-08 18:31:39', 1, NULL, '2025-12-08 18:31:39', NULL, 1, 1, 15, 0, '1', '2025-12-08 18:31:39', '0', '2025-12-18 16:43:23'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (50, 1, 'Tailwind CSS 配置', '

Tailwind CSS 的核心配置文件为 tailwind.config.js

tailwind.config.js 是 Tailwind CSS 的配置文件,用于定制化 Tailwind 的默认配置。

通过修改 tailwind.config.js 文件,开发者可以自定义颜色、间距、字体、断点等设计系统,满足特定项目需求。

创建配置文件

使用 Tailwind CSS 的 CLI 工具可以快速生成一个基础的 tailwind.config.js 文件。

在项目根目录下运行以下命令:

npx tailwindcss init

这将创建一个包含基本配置的 tailwind.config.js 文件。

基本结构

以下是一个典型的 tailwind.config.js 文件的结构:


实例

/** @type {import(\'tailwindcss\').Config} */
module.exports = {
  content: [\"./src/**/*.{html,js,vue}\"], // 定义需要扫描的模板文件路径
  theme: {
    extend: {}, // 自定义扩展
},
  plugins: [], // 配置插件
}

以上代码告诉 Tailwind CSS 扫描 src 目录下的所有 .html, .js, 和 .vue 文件。



主要配置项

1、配置模板路径:content在 tailwind.config.js 文件中,content 选项用于指定 Tailwind CSS 应该扫描哪些文件以收集类名。

content: [\n  \"./index.html\", // 单文件路径\n  \"./src/**/*.{html,js,ts,jsx,tsx}\", // 包含多个文件类型的路径\n],

这将告诉 Tailwind CSS 扫描 src 目录下的所有 .html、.js、.ts\\.jsx 和 .tsx 文件。

content 字段用于指定 Tailwind 的模板文件路径,Tailwind 会扫描这些文件以生成必要的样式,减少生成的 CSS 文件体积,只生成模板文件中使用的样式,防止未使用的样式被编译到最终输出中。

2、自定义主题:theme

在 theme 部分,你可以定义颜色、字体、间距、边框大小等。

例如,扩展默认的颜色或添加新的颜色:

theme: {\n  extend: {\n    colors: {\n      cyan: \'#9cdbff\',\n    }\n  }\n}

这将添加一个名为 cyan 的新颜色,你可以在项目中使用 bg-cyan 这样的类名。

配置项描述示例
fontSize自定义字体大小javascript fontSize: { \'xs\': \'0.75rem\', \'4xl\': \'2.5rem\', },
screens定义断点(响应式设计)javascript screens: { \'sm\': \'640px\', \'xl\': \'1280px\', },
borderRadius自定义圆角javascript borderRadius: { \'lg\': \'1rem\', \'xl\': \'1.5rem\', },
extend扩展现有默认值javascript extend: { colors: { danger: \'#FF5A5F\', }, },

实例

theme: {
  extend: {
    colors: {
      primary: \'#1D4ED8\',
      secondary: \'#64748B\',
},
    spacing: {
18: \'4.5rem\', // 新增 4.5rem 的间距
},
    fontSize: {
\'4xl\': \'2.5rem\',
},
    borderRadius: {
\'xl\': \'1.5rem\',
},
    screens: {
\'2xl\': \'1536px\', // 添加新的响应式断点
},
},
}

通过 theme.colors 定义颜色,并在样式中引用。

theme: {\n  extend: {\n    colors: {\n      brand: {\n        light: \'#93C5FD\',\n        DEFAULT: \'#3B82F6\',\n        dark: \'#1E40AF\',\n      },\n    },\n  },\n}\n

实例

<div class=\"bg-brand text-brand-light\">Custom Colors Example</div>

尝试一下 »

通过 darkMode 开启 Tailwind 的暗色模式支持。

module.exports = {\n  darkMode: \'class\', // 或 \'media\'\n  theme: {\n    extend: {\n      colors: {\n        background: {\n          light: \'#FFFFFF\',\n          dark: \'#000000\',\n        },\n      },\n    },\n  },\n}\n

实例

<div class=\"bg-background-light dark:bg-background-dark\">
  Dark Mode Example
</div>


', 3, NULL, '', '菜鸟网', '2025-12-08 18:32:16', 1, NULL, '2025-12-08 18:32:16', NULL, 1, 1, 33, 0, '1', '2025-12-08 18:32:16', '0', '2025-12-09 17:38:59'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (51, 1, 'Tailwind CSS 工具类(Utility-First)', '

Tailwind CSS 的工具类(Utility-First)是一种以实用为先的设计方法,它允许开发者直接在 HTML 元素上应用预定义的样式类,而无需编写传统的 CSS 代码。

Tailwind CSS 的核心理念是 工具类优先(Utility-First),这一设计思想意味着,你可以通过组合单一功能的 CSS 类来实现一个完整的样式,而不是依赖于复杂的自定义样式。

Tailwind CSS 提供了大量的工具类,每个类都执行一个简单的样式任务,例如,text-center 用来将文本居中,bg-blue-500 用来设置背景颜色,p-4 用来设置内边距等。

常见的工具类:

类别工具类示例描述
排版(Typography)text-center, text-lg, font-bold控制文本的对齐、字体大小、粗细等。
背景(Background)bg-blue-500, bg-opacity-50设置元素的背景颜色、背景图和透明度。
间距(Spacing)p-4, m-2, mt-8控制元素的内外边距(padding 和 margin)。
布局(Layout)flex, grid, block设置元素的显示类型和布局方式。
尺寸(Sizing)w-32, h-48设置元素的宽度和高度。
边框(Borders)border, border-2, rounded设置元素的边框、边框宽度和圆角。
阴影(Shadows)shadow, shadow-lg控制元素的阴影效果。
透明度(Opacity)opacity-50, opacity-100设置元素的透明度。
响应式(Responsive)sm:text-lg, md:bg-blue-300控制不同屏幕尺寸下的样式变化。
状态(State)hover:bg-blue-700, focus:ring-4设置元素在不同交互状态(如 hover、focus、active)下的样式。

工具类的优势



工具类的具体应用

1、文本相关工具类

实例

<p class=\"text-center text-lg font-bold text-red-500\">Hello, Tailwind!</p>

2、背景相关工具类

实例

<div class=\"bg-blue-500 bg-opacity-50 p-4\">
<h1 class=\"text-white\">Welcome to Tailwind</h1>
</div>

3、间距相关工具类

实例

<div class=\"m-8 p-4 mt-4\">
<p>This box has padding and margin.</p>
</div>

4、布局相关工具类

实例

<div class=\"flex items-center justify-between\">
<div class=\"bg-blue-500 text-white p-4\">Item 1</div>
<div class=\"bg-blue-500 text-white p-4\">Item 2</div>
</div>

5、边框和圆角相关工具类

实例

<div class=\"border border-2 rounded-lg p-4\">
<p>This box has a border and rounded corners.</p>
</div>

6、阴影相关工具类

实例

<div class=\"shadow-lg p-6\">
<p>This box has a large shadow.</p>
</div>

7、响应式工具类

Tailwind 提供了响应式工具类,可以在不同的屏幕尺寸下应用不同的样式。常见的屏幕尺寸包括 sm(小屏幕)、md(中等屏幕)、lg(大屏幕)、xl(超大屏幕)。

实例

<div class=\"bg-blue-500 sm:bg-green-500 lg:bg-red-500 p-4\">
<p>This background color changes based on the screen size.</p>
</div>

8、状态工具类

Tailwind 支持交互状态的工具类,如 hover:, focus:, active: 等。

实例

<button class=\"hover:bg-blue-700 focus:outline-none active:bg-red-500\">
  Hover or Focus Me!
</button>

', 3, NULL, '/statics/2025/12/08/quanjing_20251208183233A040.jpg', '人民日报', '2025-12-08 18:33:02', 1, NULL, '2025-12-08 18:33:02', NULL, 1, 1, 11, 0, '1', '2025-12-08 18:33:02', '0', '2025-12-18 16:47:40'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (52, 1, 'Tailwind CSS 状态处理', '

Tailwind CSS 提供了强大的状态类(状态修饰符),用于控制元素在不同交互状态下的样式变化。

Tailwind CSS 提供了多种状态类(如 hover:, focus:, active: 等)来帮助开发者快速处理交互效果,通过组合这些状态类,你可以非常简便地实现悬停、聚焦、点击等状态下的样式变化,提高用户体验。

状态类的前缀:

状态前缀作用
悬停状态hover:控制元素在鼠标悬停时的样式变化
聚焦状态focus:控制元素在获得焦点时的样式变化
激活状态active:控制元素在被点击时的样式变化
访问状态visited:控制访问过的链接的样式变化
焦点内状态focus-within:控制父元素在其子元素获得焦点时的样式变化
各状态组合无特定前缀可以同时组合多个状态前缀,如 hover:, focus:,以及 active:

1. 悬停(Hover)

悬停(hover)状态是指当用户将鼠标悬停在一个元素上时,元素的样式发生变化。使用 hover: 前缀,可以轻松实现这一效果。

语法

hover:{class}

例如,hover:bg-sky-700 会在鼠标悬停时将元素的背景颜色更改为 sky-700

常见用法


实例

<button class=\"px-4 py-2 bg-blue-500 text-white hover:bg-sky-700\">
  鼠标移动到这
</button>

尝试一下 »

当鼠标悬停时,按钮背景色从 blue-500 变为 sky-700

更多例子

2. 聚焦(Focus)

聚焦(focus)状态指的是当用户与表单元素(如输入框)交互时,元素会获得焦点。使用 focus: 前缀,可以控制元素在聚焦时的样式。

语法

focus:{class}

例如,focus:ring-2 focus:ring-blue-600 会在元素获得焦点时显示一个蓝色的环。


实例

<input class=\"border p-2 focus:outline-none focus:ring-2 focus:ring-blue-600\" type=\"text\" placeholder=\"点击我聚焦!\">

尝试一下 »

当用户点击或选中输入框时,输入框会显示一个蓝色的高亮环。

更多例子

3. 活动(Active)

活动(active)状态是指当元素被用户点击时,元素的样式会发生变化。使用 active: 前缀可以控制点击时的样式。

语法

active:{class}

例如,active:bg-green-700 会在元素被按下时更改背景颜色为绿色。

常见用法


实例

<button class=\"px-4 py-2 bg-blue-500 text-white active:bg-green-700\">
  点我
</button>

尝试一下 »

当按钮被按下时,背景色会变为绿色 green-700

更多例子

4. 组合状态

Tailwind CSS 支持组合多个状态修饰符,使得你可以更精确地控制交互状态下的样式变化。例如,你可以结合悬停、焦点、活动状态以及响应式或暗色模式。

语法

{state}:{class}

例如,dark:md:hover:bg-fuchsia-600 会在黑暗模式下、中等断点时、悬停时更改背景颜色。


实例

<button class=\"px-4 py-2 bg-blue-500 text-white hover:bg-sky-700 focus:outline-none dark:hover:bg-fuchsia-600\">
  鼠标悬停或聚焦我
</button>

尝试一下 »


', 3, NULL, '/statics/2025/12/08/3d_20251208183319A041.jpg', '新华网', '2025-12-08 18:33:37', 1, NULL, '2025-12-08 18:33:37', NULL, 1, 1, 1, 0, '1', '2025-12-08 18:33:37', '0', '2025-12-09 15:02:52'); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (53, 1, '321', '

321

', 1, 1, NULL, NULL, '2025-12-17 11:33:49', 2, '2025-12-17 11:30:00', '2025-12-17 11:35:02', NULL, 1, 1, 0, 0, '1', '2025-12-17 11:33:49', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (54, 17, 'notice1', '

aaaaaaa

', 2, NULL, NULL, NULL, '2025-12-17 12:50:30', 1, NULL, '2025-12-17 12:50:30', 1, 1, 1, 0, 0, '123', '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (55, 17, 'n2', '

1111

', 2, NULL, NULL, NULL, '2025-12-17 12:53:12', 1, NULL, '2025-12-17 12:53:12', 1, 1, 1, 0, 0, '123', '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (56, 17, 'n3', '

11

', 2, NULL, NULL, NULL, '2025-12-17 12:54:45', 1, NULL, '2025-12-17 12:56:02', 1, 1, 1, 0, 0, '123', '2025-12-17 12:54:45', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (57, 1, 'sys1', '

1111

', 1, 1, NULL, NULL, '2025-12-17 14:09:44', 2, '2025-12-17 14:10:00', '2025-12-17 14:15:02', NULL, 1, 1, 0, 0, '1', '2025-12-17 14:09:44', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (58, 2, 'n1', '

aa

', 2, NULL, NULL, NULL, '2025-12-17 14:17:08', 2, '2025-12-17 14:15:00', '2025-12-17 14:20:00', 1, 1, 1, 0, 0, '100', '2025-12-17 14:17:08', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (59, 17, '公告1111', '

1111

', 2, NULL, NULL, NULL, '2025-12-23 14:35:09', 1, NULL, '2025-12-23 14:35:09', 1, 1, 1, 0, 0, '123', '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message` (`id`, `sch_id`, `title`, `content`, `msg_type`, `msg_category`, `hotspot_cover_img_path`, `hotsport_source`, `publish_time`, `send_type`, `plan_send_time`, `actual_send_time`, `send_scope`, `msg_state`, `send_state`, `view_count`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (60, 1, '1月4日通知公告', '

通知公告

', 2, NULL, NULL, NULL, '2026-01-04 10:53:13', 1, NULL, '2026-01-04 10:53:14', 1, 1, 1, 0, 0, '128', '2026-01-04 10:53:13', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_message_rel -- ---------------------------- DROP TABLE IF EXISTS `base_message_rel`; CREATE TABLE `base_message_rel` ( `id` bigint NOT NULL AUTO_INCREMENT, `message_id` bigint DEFAULT NULL COMMENT '消息表ID', `user_type` smallint DEFAULT NULL COMMENT '用户类型:1-教师;2-学生', `user_id` bigint DEFAULT NULL COMMENT '老师ID&学生ID', `read_state` smallint DEFAULT NULL COMMENT '状态:0-未读;1-已读', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id` DESC) ) ENGINE=InnoDB AUTO_INCREMENT=840 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='消息关联表'; -- ---------------------------- -- Records of base_message_rel -- ---------------------------- BEGIN; INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (839, 60, 2, 1, 1, NULL, '2026-01-04 10:53:14', NULL, '2026-01-04 10:53:42'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (838, 60, 2, 2, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (837, 60, 2, 3, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (836, 60, 2, 4, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (835, 60, 2, 5, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (834, 60, 2, 6, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (833, 60, 2, 7, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (832, 60, 2, 17, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (831, 60, 2, 20, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (830, 60, 2, 21, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (829, 60, 1, 144, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (828, 60, 1, 141, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (827, 60, 1, 137, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (826, 60, 1, 128, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (825, 60, 1, 125, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (824, 60, 1, 116, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (823, 60, 1, 115, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (822, 60, 1, 112, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (821, 60, 1, 2, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (820, 60, 1, 1, 0, NULL, '2026-01-04 10:53:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (819, 59, 2, 10, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (818, 59, 2, 11, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (817, 59, 2, 12, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (816, 59, 2, 13, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (815, 59, 2, 15, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (814, 59, 2, 2, 1, NULL, '2025-12-23 14:35:09', NULL, '2025-12-23 14:59:34'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (813, 59, 1, 136, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (812, 59, 1, 135, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (811, 59, 1, 131, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (810, 59, 1, 127, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (809, 59, 1, 126, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (808, 59, 1, 123, 0, NULL, '2025-12-23 14:35:09', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (807, 58, 2, 8, 0, NULL, '2025-12-17 14:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (806, 58, 2, 9, 0, NULL, '2025-12-17 14:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (805, 58, 2, 19, 0, NULL, '2025-12-17 14:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (804, 58, 1, 140, 0, NULL, '2025-12-17 14:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (803, 58, 1, 139, 0, NULL, '2025-12-17 14:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (802, 58, 1, 118, 0, NULL, '2025-12-17 14:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (801, 58, 1, 101, 0, NULL, '2025-12-17 14:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (800, 58, 1, 100, 0, NULL, '2025-12-17 14:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (799, 57, 2, 14, 0, NULL, '2025-12-17 14:15:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (798, 57, 2, 16, 0, NULL, '2025-12-17 14:15:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (797, 57, 1, 138, 0, NULL, '2025-12-17 14:15:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (796, 57, 1, 134, 0, NULL, '2025-12-17 14:15:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (795, 57, 1, 133, 0, NULL, '2025-12-17 14:15:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (794, 57, 2, 10, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (793, 57, 2, 11, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (792, 57, 2, 12, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (791, 57, 2, 13, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (790, 57, 2, 15, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (789, 57, 2, 18, 1, NULL, '2025-12-17 14:15:01', NULL, '2025-12-18 11:15:42'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (788, 57, 1, 136, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (787, 57, 1, 135, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (786, 57, 1, 131, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (784, 57, 1, 126, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (783, 57, 1, 123, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (782, 57, 1, 109, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (781, 57, 1, 108, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (780, 57, 2, 8, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (779, 57, 2, 9, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (778, 57, 2, 19, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (777, 57, 1, 140, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (776, 57, 1, 139, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (775, 57, 1, 118, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (774, 57, 1, 101, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (773, 57, 1, 100, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (772, 57, 2, 1, 1, NULL, '2025-12-17 14:15:01', NULL, '2025-12-18 17:45:17'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (771, 57, 2, 2, 1, NULL, '2025-12-17 14:15:01', NULL, '2025-12-23 14:59:39'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (770, 57, 2, 3, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (769, 57, 2, 4, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (768, 57, 2, 5, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (767, 57, 2, 6, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (766, 57, 2, 7, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (765, 57, 2, 17, 0, NULL, '2025-12-17 14:15:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (764, 57, 1, 137, 0, NULL, '2025-12-17 14:15:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (763, 57, 1, 128, 0, NULL, '2025-12-17 14:15:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (762, 57, 1, 125, 0, NULL, '2025-12-17 14:15:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (761, 57, 1, 116, 0, NULL, '2025-12-17 14:15:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (760, 57, 1, 115, 0, NULL, '2025-12-17 14:15:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (759, 57, 1, 112, 0, NULL, '2025-12-17 14:15:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (758, 57, 1, 111, 0, NULL, '2025-12-17 14:15:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (757, 57, 1, 110, 0, NULL, '2025-12-17 14:15:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (756, 57, 1, 2, 0, NULL, '2025-12-17 14:15:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (755, 57, 1, 1, 0, NULL, '2025-12-17 14:15:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (754, 56, 2, 10, 0, NULL, '2025-12-17 12:56:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (753, 56, 2, 11, 0, NULL, '2025-12-17 12:56:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (752, 56, 2, 12, 0, NULL, '2025-12-17 12:56:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (751, 56, 2, 13, 0, NULL, '2025-12-17 12:56:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (750, 56, 2, 15, 0, NULL, '2025-12-17 12:56:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (749, 56, 2, 18, 1, NULL, '2025-12-17 12:56:02', NULL, '2025-12-18 17:17:35'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (748, 56, 1, 136, 0, NULL, '2025-12-17 12:55:36', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (747, 56, 1, 135, 0, NULL, '2025-12-17 12:55:36', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (746, 56, 1, 131, 0, NULL, '2025-12-17 12:55:36', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (743, 56, 1, 123, 0, NULL, '2025-12-17 12:55:26', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (742, 55, 2, 10, 0, NULL, '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (741, 55, 2, 11, 0, NULL, '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (740, 55, 2, 12, 0, NULL, '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (739, 55, 2, 13, 0, NULL, '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (738, 55, 2, 15, 0, NULL, '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (737, 55, 2, 18, 0, NULL, '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (736, 55, 1, 136, 0, NULL, '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (735, 55, 1, 135, 0, NULL, '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (734, 55, 1, 131, 0, NULL, '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (731, 55, 1, 123, 0, NULL, '2025-12-17 12:53:12', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (730, 54, 2, 10, 0, NULL, '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (729, 54, 2, 11, 0, NULL, '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (728, 54, 2, 12, 0, NULL, '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (727, 54, 2, 13, 0, NULL, '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (726, 54, 2, 15, 0, NULL, '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (725, 54, 2, 18, 0, NULL, '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (724, 54, 1, 136, 0, NULL, '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (723, 54, 1, 135, 0, NULL, '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (722, 54, 1, 131, 0, NULL, '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (719, 54, 1, 123, 0, NULL, '2025-12-17 12:50:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (718, 53, 2, 14, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (717, 53, 2, 16, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (716, 53, 1, 138, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (715, 53, 1, 134, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (714, 53, 1, 133, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (713, 53, 2, 10, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (712, 53, 2, 11, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (711, 53, 2, 12, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (710, 53, 2, 13, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (709, 53, 2, 15, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (708, 53, 2, 18, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (707, 53, 2, 14, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (706, 53, 2, 16, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (705, 53, 1, 136, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (704, 53, 1, 135, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (703, 53, 1, 131, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (701, 53, 1, 126, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (700, 53, 1, 123, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (699, 53, 1, 138, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (698, 53, 1, 134, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (697, 53, 1, 133, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (696, 53, 2, 10, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (695, 53, 2, 11, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (694, 53, 2, 12, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (693, 53, 2, 13, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (692, 53, 2, 15, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (691, 53, 2, 18, 0, NULL, '2025-12-17 11:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (690, 53, 1, 136, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (689, 53, 1, 135, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (688, 53, 1, 131, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (686, 53, 1, 126, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (685, 53, 1, 123, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (684, 53, 1, 109, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (683, 53, 1, 108, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (682, 53, 1, 109, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (681, 53, 1, 108, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (680, 53, 2, 8, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (679, 53, 2, 9, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (678, 53, 2, 19, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (677, 53, 1, 140, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (676, 53, 1, 139, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (675, 53, 1, 118, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (674, 53, 1, 101, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (673, 53, 1, 100, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (672, 53, 2, 8, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (671, 53, 2, 9, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (670, 53, 2, 19, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (669, 53, 1, 140, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (668, 53, 1, 139, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (667, 53, 1, 118, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (666, 53, 1, 101, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (665, 53, 1, 100, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (664, 53, 2, 1, 1, NULL, '2025-12-17 11:35:01', NULL, '2025-12-17 11:45:43'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (663, 53, 2, 2, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (662, 53, 2, 3, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (661, 53, 2, 4, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (660, 53, 2, 5, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (659, 53, 2, 6, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (658, 53, 2, 7, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (657, 53, 2, 17, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (656, 53, 1, 137, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (655, 53, 1, 128, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (654, 53, 1, 125, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (653, 53, 1, 116, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (652, 53, 1, 115, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (651, 53, 1, 112, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (650, 53, 1, 111, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (649, 53, 1, 110, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (648, 53, 1, 2, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (647, 53, 1, 1, 1, NULL, '2025-12-17 11:35:01', NULL, '2025-12-17 11:45:48'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (646, 53, 2, 1, 1, NULL, '2025-12-17 11:35:01', NULL, '2025-12-17 11:45:50'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (645, 53, 2, 2, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (644, 53, 2, 3, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (643, 53, 2, 4, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (642, 53, 2, 5, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (641, 53, 2, 6, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (640, 53, 2, 7, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (639, 53, 2, 17, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (638, 53, 1, 137, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (637, 53, 1, 128, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (636, 53, 1, 125, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (635, 53, 1, 116, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (634, 53, 1, 115, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (633, 53, 1, 112, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (632, 53, 1, 111, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (631, 53, 1, 110, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (630, 53, 1, 2, 0, NULL, '2025-12-17 11:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (629, 53, 1, 1, 1, NULL, '2025-12-17 11:35:01', NULL, '2025-12-17 11:46:02'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (628, 41, 2, 14, 0, NULL, '2025-12-03 15:05:05', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (627, 41, 1, 134, 0, NULL, '2025-12-03 15:05:05', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (626, 41, 1, 133, 0, NULL, '2025-12-03 15:05:05', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (625, 40, 2, 14, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (624, 40, 1, 134, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (623, 40, 1, 133, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (622, 40, 2, 14, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (621, 40, 2, 14, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (620, 40, 1, 134, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (619, 40, 1, 133, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (618, 40, 2, 10, 1, NULL, '2025-12-02 14:20:02', NULL, '2025-12-10 15:25:10'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (617, 40, 2, 11, 1, NULL, '2025-12-02 14:20:02', NULL, '2025-12-18 17:40:45'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (616, 40, 2, 12, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (615, 40, 2, 13, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (614, 40, 1, 134, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (613, 40, 1, 133, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (612, 40, 1, 136, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (611, 40, 1, 135, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (610, 40, 1, 131, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (608, 40, 1, 126, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (607, 40, 1, 123, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (606, 40, 2, 10, 1, NULL, '2025-12-02 14:20:02', NULL, '2025-12-10 15:25:40'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (605, 40, 2, 11, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (604, 40, 2, 12, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (603, 40, 2, 13, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (602, 40, 2, 10, 1, NULL, '2025-12-02 14:20:01', NULL, '2025-12-10 15:25:43'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (601, 40, 2, 11, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (600, 40, 2, 12, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (599, 40, 2, 13, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (598, 40, 1, 136, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (597, 40, 1, 135, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (596, 40, 1, 131, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (594, 40, 1, 126, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (593, 40, 1, 123, 0, NULL, '2025-12-02 14:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (592, 40, 1, 136, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (591, 40, 1, 135, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (590, 40, 1, 131, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (588, 40, 1, 126, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (587, 40, 1, 123, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (586, 40, 1, 109, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (585, 40, 1, 108, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (584, 40, 1, 109, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (583, 40, 1, 109, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (582, 40, 1, 108, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (581, 40, 2, 8, 1, NULL, '2025-12-02 14:20:01', NULL, '2025-12-18 11:01:01'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (580, 40, 2, 9, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (579, 40, 1, 108, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (578, 40, 1, 118, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (577, 40, 1, 101, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (576, 40, 1, 100, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (575, 40, 2, 8, 1, NULL, '2025-12-02 14:20:01', NULL, '2025-12-18 11:01:05'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (574, 40, 2, 9, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (573, 40, 2, 8, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (572, 40, 2, 9, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (571, 40, 1, 118, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (570, 40, 1, 101, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (569, 40, 1, 100, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (568, 40, 2, 1, 1, NULL, '2025-12-02 14:20:01', NULL, '2025-12-18 17:44:54'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (567, 40, 2, 2, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (566, 40, 2, 3, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (565, 40, 2, 4, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (564, 40, 2, 5, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (563, 40, 2, 6, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (562, 40, 2, 7, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (561, 40, 1, 118, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (560, 40, 1, 101, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (559, 40, 1, 100, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (558, 40, 2, 1, 1, NULL, '2025-12-02 14:20:01', NULL, '2025-12-23 14:53:02'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (557, 40, 2, 2, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (556, 40, 2, 3, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (555, 40, 2, 4, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (554, 40, 2, 5, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (553, 40, 2, 6, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (552, 40, 2, 7, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (551, 40, 1, 128, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (550, 40, 1, 125, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (549, 40, 1, 124, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (548, 40, 1, 119, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (547, 40, 1, 117, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (546, 40, 1, 116, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (545, 40, 1, 115, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (544, 40, 1, 114, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (543, 40, 1, 113, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (542, 40, 1, 112, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (541, 40, 1, 111, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (540, 40, 1, 110, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (539, 40, 1, 2, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (538, 40, 1, 1, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (537, 40, 1, 128, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (536, 40, 1, 125, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (535, 40, 1, 124, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (534, 40, 1, 119, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (533, 40, 1, 117, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (532, 40, 1, 116, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (531, 40, 1, 115, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (530, 40, 1, 114, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (529, 40, 1, 113, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (528, 40, 1, 112, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (527, 40, 1, 111, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (526, 40, 1, 110, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (525, 40, 1, 2, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (524, 40, 1, 1, 0, NULL, '2025-12-02 14:20:01', NULL, '2025-12-08 18:34:51'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (523, 40, 2, 1, 0, NULL, '2025-12-02 14:20:01', NULL, '2025-12-08 18:34:54'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (522, 40, 2, 2, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (521, 40, 2, 3, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (520, 40, 2, 4, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (519, 40, 2, 5, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (518, 40, 2, 6, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (517, 40, 2, 7, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (516, 40, 1, 128, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (515, 40, 1, 125, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (514, 40, 1, 124, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (513, 40, 1, 119, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (512, 40, 1, 117, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (511, 40, 1, 116, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (510, 40, 1, 115, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (509, 40, 1, 114, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (508, 40, 1, 113, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (507, 40, 1, 112, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (506, 40, 1, 111, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (505, 40, 1, 110, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (504, 40, 1, 2, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (503, 40, 1, 1, 0, NULL, '2025-12-02 14:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (502, 39, 2, 14, 0, NULL, '2025-12-02 14:04:35', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (501, 39, 1, 134, 0, NULL, '2025-12-02 14:04:35', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (500, 39, 1, 133, 0, NULL, '2025-12-02 14:04:35', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (499, 39, 2, 10, 1, NULL, '2025-12-02 14:04:34', NULL, '2025-12-10 15:25:58'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (498, 39, 2, 11, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (497, 39, 2, 12, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (496, 39, 2, 13, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (495, 39, 1, 136, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (494, 39, 1, 135, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (493, 39, 1, 131, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (491, 39, 1, 126, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (490, 39, 1, 123, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (489, 39, 1, 109, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (488, 39, 1, 108, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (487, 39, 2, 8, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (486, 39, 2, 9, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (485, 39, 1, 118, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (484, 39, 1, 101, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (483, 39, 1, 100, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (482, 39, 2, 1, 1, NULL, '2025-12-02 14:04:34', NULL, '2025-12-18 17:45:06'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (481, 39, 2, 2, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (480, 39, 2, 3, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (479, 39, 2, 4, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (478, 39, 2, 5, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (477, 39, 2, 6, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (476, 39, 2, 7, 0, NULL, '2025-12-02 14:04:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (475, 39, 1, 128, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (474, 39, 1, 125, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (473, 39, 1, 124, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (472, 39, 1, 119, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (471, 39, 1, 117, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (470, 39, 1, 116, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (469, 39, 1, 115, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (468, 39, 1, 114, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (467, 39, 1, 113, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (466, 39, 1, 112, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (465, 39, 1, 111, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (464, 39, 1, 110, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (463, 39, 1, 2, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (462, 39, 1, 1, 0, NULL, '2025-12-02 14:04:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (461, 38, 2, 14, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (460, 38, 1, 134, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (459, 38, 1, 133, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (458, 38, 2, 10, 0, NULL, '2025-12-01 16:20:02', NULL, '2025-12-09 15:33:51'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (457, 38, 2, 11, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (456, 38, 2, 12, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (455, 38, 2, 13, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (454, 38, 1, 136, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (453, 38, 1, 135, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (452, 38, 1, 131, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (450, 38, 1, 126, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (449, 38, 1, 123, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (448, 38, 2, 14, 0, NULL, '2025-12-01 16:20:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (447, 38, 1, 134, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (446, 38, 1, 133, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (445, 38, 1, 109, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (444, 38, 2, 10, 0, NULL, '2025-12-01 16:20:01', NULL, '2025-12-09 15:52:25'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (443, 38, 2, 11, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (442, 38, 2, 12, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (441, 38, 2, 13, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (440, 38, 1, 136, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (439, 38, 1, 135, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (438, 38, 1, 131, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (436, 38, 1, 126, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (435, 38, 1, 123, 0, NULL, '2025-12-01 16:20:01', NULL, '2025-12-01 22:25:32'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (434, 38, 1, 108, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (433, 38, 1, 109, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (432, 38, 2, 8, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (431, 38, 2, 9, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (430, 38, 1, 118, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (429, 38, 1, 101, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (428, 38, 1, 100, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (427, 38, 1, 108, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (426, 38, 2, 8, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (425, 38, 2, 9, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (424, 38, 2, 1, 0, NULL, '2025-12-01 16:20:01', NULL, '2025-12-08 17:17:12'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (423, 38, 2, 2, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (422, 38, 2, 3, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (421, 38, 2, 4, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (420, 38, 2, 5, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (419, 38, 2, 6, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (418, 38, 2, 7, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (417, 38, 1, 118, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (416, 38, 1, 101, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (415, 38, 1, 100, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (414, 38, 1, 128, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (413, 38, 1, 125, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (412, 38, 1, 124, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (411, 38, 1, 119, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (410, 38, 1, 117, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (409, 38, 1, 116, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (408, 38, 1, 115, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (407, 38, 1, 114, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (406, 38, 1, 113, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (405, 38, 1, 112, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (404, 38, 1, 111, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (403, 38, 1, 110, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (402, 38, 1, 2, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (401, 38, 1, 1, 0, NULL, '2025-12-01 16:20:01', NULL, '2025-12-08 17:17:07'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (400, 38, 2, 1, 1, NULL, '2025-12-01 16:20:01', NULL, '2025-12-18 17:45:25'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (399, 38, 2, 2, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (398, 38, 2, 3, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (397, 38, 2, 4, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (396, 38, 2, 5, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (395, 38, 2, 6, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (394, 38, 2, 7, 0, NULL, '2025-12-01 16:20:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (393, 38, 1, 128, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (392, 38, 1, 125, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (391, 38, 1, 124, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (390, 38, 1, 119, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (389, 38, 1, 117, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (388, 38, 1, 116, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (387, 38, 1, 115, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (386, 38, 1, 114, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (385, 38, 1, 113, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (384, 38, 1, 112, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (383, 38, 1, 111, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (382, 38, 1, 110, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (381, 38, 1, 2, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (380, 38, 1, 1, 0, NULL, '2025-12-01 16:20:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (379, 37, 2, 14, 0, NULL, '2025-12-01 15:46:23', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (378, 37, 1, 134, 0, NULL, '2025-12-01 15:46:23', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (377, 37, 1, 133, 0, NULL, '2025-12-01 15:46:23', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (376, 37, 2, 10, 0, NULL, '2025-12-01 15:46:22', NULL, '2025-12-10 15:20:21'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (375, 37, 2, 11, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (374, 37, 2, 12, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (373, 37, 2, 13, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (372, 37, 1, 136, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (371, 37, 1, 135, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (370, 37, 1, 131, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (368, 37, 1, 126, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (367, 37, 1, 123, 0, NULL, '2025-12-01 15:46:22', NULL, '2025-12-01 22:25:35'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (366, 37, 1, 109, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (365, 37, 1, 108, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (364, 37, 2, 8, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (363, 37, 2, 9, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (362, 37, 1, 118, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (361, 37, 1, 101, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (360, 37, 1, 100, 0, NULL, '2025-12-01 15:46:22', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (359, 37, 2, 1, 1, NULL, '2025-12-01 15:46:21', NULL, '2025-12-18 17:49:07'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (358, 37, 2, 2, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (357, 37, 2, 3, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (356, 37, 2, 4, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (355, 37, 2, 5, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (354, 37, 2, 6, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (353, 37, 2, 7, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (352, 37, 1, 128, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (351, 37, 1, 125, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (350, 37, 1, 124, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (349, 37, 1, 119, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (348, 37, 1, 117, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (347, 37, 1, 116, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (346, 37, 1, 115, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (345, 37, 1, 114, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (344, 37, 1, 113, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (343, 37, 1, 112, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (342, 37, 1, 111, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (341, 37, 1, 110, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (340, 37, 1, 2, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (339, 37, 1, 1, 0, NULL, '2025-12-01 15:46:21', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (338, 36, 2, 8, 0, NULL, '2025-12-01 10:58:15', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (337, 36, 2, 9, 0, NULL, '2025-12-01 10:58:15', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (336, 36, 1, 118, 0, NULL, '2025-12-01 10:58:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (335, 36, 1, 101, 0, NULL, '2025-12-01 10:58:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (334, 36, 1, 100, 0, NULL, '2025-12-01 10:58:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (333, 32, 2, 14, 0, NULL, '2025-12-01 10:50:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (332, 32, 1, 134, 0, NULL, '2025-12-01 10:50:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (331, 32, 1, 133, 0, NULL, '2025-12-01 10:50:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (330, 34, 2, 14, 0, NULL, '2025-12-01 10:44:46', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (329, 34, 1, 134, 0, NULL, '2025-12-01 10:44:46', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (328, 34, 1, 133, 0, NULL, '2025-12-01 10:44:46', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (327, 34, 2, 10, 1, NULL, '2025-12-01 10:44:46', NULL, '2025-12-11 14:00:44'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (326, 34, 2, 11, 0, NULL, '2025-12-01 10:44:46', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (325, 34, 2, 12, 0, NULL, '2025-12-01 10:44:46', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (324, 34, 2, 13, 0, NULL, '2025-12-01 10:44:46', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (323, 34, 1, 131, 0, NULL, '2025-12-01 10:44:45', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (321, 34, 1, 126, 0, NULL, '2025-12-01 10:44:45', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (320, 34, 1, 123, 0, NULL, '2025-12-01 10:44:45', NULL, '2025-12-01 22:25:38'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (319, 34, 1, 109, 0, NULL, '2025-12-01 10:44:45', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (318, 34, 1, 108, 0, NULL, '2025-12-01 10:44:45', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (317, 34, 2, 8, 0, NULL, '2025-12-01 10:44:45', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (316, 34, 2, 9, 0, NULL, '2025-12-01 10:44:45', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (315, 34, 1, 118, 0, NULL, '2025-12-01 10:44:45', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (314, 34, 1, 101, 0, NULL, '2025-12-01 10:44:45', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (313, 34, 1, 100, 0, NULL, '2025-12-01 10:44:45', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (312, 34, 2, 1, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (311, 34, 2, 2, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (310, 34, 2, 3, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (309, 34, 2, 4, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (308, 34, 2, 5, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (307, 34, 2, 6, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (306, 34, 2, 7, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (305, 34, 1, 128, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (304, 34, 1, 125, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (303, 34, 1, 124, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (302, 34, 1, 119, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (301, 34, 1, 117, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (300, 34, 1, 116, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (299, 34, 1, 115, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (298, 34, 1, 114, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (297, 34, 1, 113, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (296, 34, 1, 112, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (295, 34, 1, 111, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (294, 34, 1, 110, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (293, 34, 1, 2, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (292, 34, 1, 1, 0, NULL, '2025-12-01 10:44:44', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (291, 33, 2, 14, 0, NULL, '2025-12-01 10:41:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (290, 33, 1, 134, 0, NULL, '2025-12-01 10:41:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (289, 33, 1, 133, 0, NULL, '2025-12-01 10:41:30', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (288, 31, 2, 14, 0, NULL, '2025-12-01 10:38:35', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (287, 31, 1, 134, 0, NULL, '2025-12-01 10:38:35', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (286, 31, 1, 133, 0, NULL, '2025-12-01 10:38:35', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (285, 30, 2, 10, 1, NULL, '2025-11-24 09:52:28', NULL, '2025-12-11 14:00:50'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (284, 30, 2, 11, 0, NULL, '2025-11-24 09:52:28', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (282, 30, 1, 126, 0, NULL, '2025-11-24 09:52:28', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (281, 30, 1, 123, 0, NULL, '2025-11-24 09:52:28', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (280, 30, 1, 109, 0, NULL, '2025-11-24 09:52:27', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (279, 30, 1, 108, 0, NULL, '2025-11-24 09:52:27', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (278, 30, 2, 8, 0, NULL, '2025-11-24 09:52:27', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (277, 30, 2, 9, 0, NULL, '2025-11-24 09:52:27', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (276, 30, 1, 118, 0, NULL, '2025-11-24 09:52:26', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (275, 30, 1, 101, 0, NULL, '2025-11-24 09:52:26', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (274, 30, 1, 100, 0, NULL, '2025-11-24 09:52:26', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (273, 30, 2, 1, 0, NULL, '2025-11-24 09:52:26', NULL, '2025-12-01 11:00:05'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (272, 30, 2, 2, 0, NULL, '2025-11-24 09:52:26', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (271, 30, 2, 3, 0, NULL, '2025-11-24 09:52:26', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (270, 30, 2, 4, 0, NULL, '2025-11-24 09:52:26', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (269, 30, 2, 5, 0, NULL, '2025-11-24 09:52:26', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (268, 30, 2, 6, 0, NULL, '2025-11-24 09:52:26', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (267, 30, 2, 7, 0, NULL, '2025-11-24 09:52:26', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (266, 30, 1, 125, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (265, 30, 1, 124, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (264, 30, 1, 119, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (263, 30, 1, 117, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (262, 30, 1, 116, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (261, 30, 1, 115, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (260, 30, 1, 114, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (259, 30, 1, 113, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (258, 30, 1, 112, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (257, 30, 1, 111, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (256, 30, 1, 110, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (255, 30, 1, 2, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (254, 30, 1, 1, 0, NULL, '2025-11-24 09:52:25', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (253, 29, 2, 10, 0, NULL, '2025-11-21 16:38:58', NULL, '2025-12-09 15:15:02'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (252, 29, 2, 11, 0, NULL, '2025-11-21 16:38:58', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (250, 29, 1, 126, 0, NULL, '2025-11-21 16:38:58', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (249, 29, 1, 123, 0, NULL, '2025-11-21 16:38:58', NULL, '2025-11-21 16:39:22'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (248, 28, 2, 10, 0, NULL, '2025-11-21 16:38:04', NULL, '2025-12-10 15:20:04'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (247, 28, 2, 11, 0, NULL, '2025-11-21 16:38:04', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (245, 28, 1, 126, 0, NULL, '2025-11-21 16:38:04', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (244, 28, 1, 123, 0, NULL, '2025-11-21 16:38:04', NULL, '2025-11-21 16:39:27'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (243, 27, 2, 10, 0, NULL, '2025-11-20 12:22:37', NULL, '2025-12-09 15:15:08'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (242, 26, 2, 10, 1, NULL, '2025-11-20 12:13:58', NULL, '2025-12-10 15:25:33'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (241, 25, 2, 8, 0, NULL, '2025-11-18 10:41:07', NULL, '2025-11-18 11:44:21'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (240, 25, 2, 9, 0, NULL, '2025-11-18 10:41:07', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (239, 25, 1, 118, 0, NULL, '2025-11-18 10:41:07', NULL, '2025-11-18 15:32:30'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (238, 25, 1, 101, 0, NULL, '2025-11-18 10:41:07', NULL, '2025-11-18 10:44:27'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (237, 25, 1, 100, 0, NULL, '2025-11-18 10:41:07', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (236, 24, 2, 8, 0, NULL, '2025-11-18 10:40:41', NULL, '2025-11-20 10:02:37'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (235, 24, 2, 9, 0, NULL, '2025-11-18 10:40:41', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (234, 24, 1, 118, 0, NULL, '2025-11-18 10:40:41', NULL, '2025-11-18 15:33:57'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (233, 24, 1, 101, 0, NULL, '2025-11-18 10:40:41', NULL, '2025-11-18 10:46:59'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (232, 24, 1, 100, 0, NULL, '2025-11-18 10:40:41', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (231, 23, 2, 8, 0, NULL, '2025-11-18 10:40:14', NULL, '2025-11-20 10:02:40'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (230, 23, 2, 9, 0, NULL, '2025-11-18 10:40:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (229, 23, 1, 118, 0, NULL, '2025-11-18 10:40:14', NULL, '2025-11-20 09:54:59'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (228, 23, 1, 101, 0, NULL, '2025-11-18 10:40:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (227, 23, 1, 100, 0, NULL, '2025-11-18 10:40:14', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (226, 22, 1, 109, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (225, 22, 1, 108, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (224, 22, 2, 8, 0, NULL, '2025-11-18 10:40:01', NULL, '2025-11-20 10:03:55'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (223, 22, 2, 9, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (222, 22, 1, 118, 0, NULL, '2025-11-18 10:40:01', NULL, '2025-11-20 10:23:04'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (221, 22, 1, 101, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (220, 22, 1, 100, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (219, 22, 2, 1, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (218, 22, 2, 2, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (217, 22, 2, 3, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (216, 22, 2, 4, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (215, 22, 2, 5, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (214, 22, 2, 6, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (213, 22, 2, 7, 0, NULL, '2025-11-18 10:40:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (212, 22, 1, 119, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (211, 22, 1, 117, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (210, 22, 1, 116, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (209, 22, 1, 115, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (208, 22, 1, 114, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (207, 22, 1, 113, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (206, 22, 1, 112, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (205, 22, 1, 111, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (204, 22, 1, 110, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (203, 22, 1, 2, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (202, 22, 1, 1, 0, NULL, '2025-11-18 10:40:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (201, 21, 1, 109, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (200, 21, 1, 108, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (199, 21, 2, 8, 0, NULL, '2025-11-18 10:38:19', NULL, '2025-11-20 10:04:07'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (198, 21, 2, 9, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (197, 21, 1, 118, 0, NULL, '2025-11-18 10:38:19', NULL, '2025-11-20 10:23:14'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (196, 21, 1, 101, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (195, 21, 1, 100, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (194, 21, 2, 1, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (193, 21, 2, 2, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (192, 21, 2, 3, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (191, 21, 2, 4, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (190, 21, 2, 5, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (189, 21, 2, 6, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (188, 21, 2, 7, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (187, 21, 1, 119, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (186, 21, 1, 117, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (185, 21, 1, 116, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (184, 21, 1, 115, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (183, 21, 1, 114, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (182, 21, 1, 113, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (181, 21, 1, 112, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (180, 21, 1, 111, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (179, 21, 1, 110, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (178, 21, 1, 2, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (177, 21, 1, 1, 0, NULL, '2025-11-18 10:38:19', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (176, 20, 1, 109, 0, NULL, '2025-11-18 10:37:49', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (175, 20, 1, 108, 0, NULL, '2025-11-18 10:37:49', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (174, 20, 2, 8, 0, NULL, '2025-11-18 10:37:49', NULL, '2025-11-20 10:04:14'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (173, 20, 2, 9, 0, NULL, '2025-11-18 10:37:49', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (172, 20, 1, 118, 0, NULL, '2025-11-18 10:37:49', NULL, '2025-11-20 10:23:22'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (171, 20, 1, 101, 0, NULL, '2025-11-18 10:37:49', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (170, 20, 1, 100, 0, NULL, '2025-11-18 10:37:49', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (169, 20, 2, 1, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (168, 20, 2, 2, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (167, 20, 2, 3, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (166, 20, 2, 4, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (165, 20, 2, 5, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (164, 20, 2, 6, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (163, 20, 2, 7, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (162, 20, 1, 119, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (161, 20, 1, 117, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (160, 20, 1, 116, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (159, 20, 1, 115, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (158, 20, 1, 114, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (157, 20, 1, 113, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (156, 20, 1, 112, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (155, 20, 1, 111, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (154, 20, 1, 110, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (153, 20, 1, 2, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (152, 20, 1, 1, 0, NULL, '2025-11-18 10:37:48', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (151, 19, 1, 109, 0, NULL, '2025-11-18 10:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (150, 19, 1, 108, 0, NULL, '2025-11-18 10:35:02', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (149, 19, 2, 8, 0, NULL, '2025-11-18 10:35:01', NULL, '2025-11-20 10:04:25'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (148, 19, 2, 9, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (147, 19, 1, 118, 0, NULL, '2025-11-18 10:35:01', NULL, '2025-11-20 10:23:25'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (146, 19, 1, 101, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (145, 19, 1, 100, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (144, 19, 2, 1, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (143, 19, 2, 2, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (142, 19, 2, 3, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (141, 19, 2, 4, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (140, 19, 2, 5, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (139, 19, 2, 6, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (138, 19, 2, 7, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (137, 19, 1, 119, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (136, 19, 1, 117, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (135, 19, 1, 116, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (134, 19, 1, 115, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (133, 19, 1, 114, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (132, 19, 1, 113, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (131, 19, 1, 112, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (130, 19, 1, 111, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (129, 19, 1, 110, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (128, 19, 1, 2, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (127, 19, 1, 1, 0, NULL, '2025-11-18 10:35:01', NULL, '2025-11-26 16:51:34'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (126, 18, 1, 118, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (125, 18, 1, 101, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (124, 18, 1, 100, 0, NULL, '2025-11-18 10:35:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (123, 17, 2, 8, 0, NULL, '2025-11-18 10:35:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (122, 17, 2, 9, 0, NULL, '2025-11-18 10:35:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (121, 17, 1, 118, 0, NULL, '2025-11-18 10:35:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (120, 17, 1, 101, 0, NULL, '2025-11-18 10:35:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (119, 17, 1, 100, 0, NULL, '2025-11-18 10:35:00', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (118, 14, 2, 8, 0, NULL, '2025-11-18 09:44:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (117, 14, 2, 9, 0, NULL, '2025-11-18 09:44:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (116, 14, 1, 118, 0, NULL, '2025-11-18 09:44:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (115, 14, 1, 101, 0, NULL, '2025-11-18 09:44:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (114, 14, 1, 100, 0, NULL, '2025-11-18 09:44:34', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (113, 13, 2, 8, 0, NULL, '2025-11-18 09:43:36', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (112, 13, 2, 9, 0, NULL, '2025-11-18 09:43:36', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (111, 12, 1, 118, 0, NULL, '2025-11-18 09:42:50', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (110, 12, 1, 101, 0, NULL, '2025-11-18 09:42:50', NULL, '2025-11-18 10:50:40'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, 12, 1, 100, 0, NULL, '2025-11-18 09:42:50', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, 11, 2, 8, 0, NULL, '2025-11-17 18:27:46', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (107, 11, 2, 9, 0, NULL, '2025-11-17 18:27:46', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (106, 11, 1, 118, 0, NULL, '2025-11-17 18:27:46', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (105, 11, 1, 101, 0, NULL, '2025-11-17 18:27:46', NULL, '2025-11-18 10:51:24'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (104, 11, 1, 100, 0, NULL, '2025-11-17 18:27:46', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (103, 9, 2, 8, 0, NULL, '2025-11-17 17:56:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (102, 9, 2, 9, 0, NULL, '2025-11-17 17:56:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (101, 9, 1, 118, 0, NULL, '2025-11-17 17:56:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (100, 9, 1, 101, 0, NULL, '2025-11-17 17:56:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (99, 9, 1, 100, 0, NULL, '2025-11-17 17:56:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (98, 8, 2, 8, 0, NULL, '2025-11-17 17:56:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (97, 8, 2, 9, 0, NULL, '2025-11-17 17:56:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (96, 8, 1, 118, 0, NULL, '2025-11-17 17:06:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (95, 8, 1, 101, 0, NULL, '2025-11-17 17:06:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (94, 8, 1, 100, 0, NULL, '2025-11-17 17:06:33', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (93, 6, 2, 8, 0, NULL, '2025-11-17 17:56:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (92, 6, 2, 9, 0, NULL, '2025-11-17 17:56:01', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (91, 6, 1, 118, 0, NULL, '2025-11-17 16:51:49', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (90, 6, 1, 101, 0, NULL, '2025-11-17 16:51:49', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (89, 6, 1, 100, 0, NULL, '2025-11-17 16:51:49', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (88, 4, 1, 109, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (87, 4, 1, 108, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (86, 4, 2, 8, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (85, 4, 2, 9, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (84, 4, 1, 118, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (83, 4, 1, 101, 0, NULL, '2025-11-17 16:13:52', NULL, '2025-11-18 10:50:10'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (82, 4, 1, 100, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (81, 4, 2, 1, 0, NULL, '2025-11-17 16:13:52', NULL, '2025-11-19 22:16:22'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (80, 4, 2, 2, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (79, 4, 2, 3, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (78, 4, 2, 4, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (77, 4, 2, 5, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (76, 4, 2, 6, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (75, 4, 2, 7, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (74, 4, 1, 119, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (73, 4, 1, 117, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (72, 4, 1, 116, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (71, 4, 1, 115, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (70, 4, 1, 114, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (69, 4, 1, 113, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (68, 4, 1, 112, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (67, 4, 1, 111, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (66, 4, 1, 110, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (65, 4, 1, 2, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (64, 4, 1, 1, 0, NULL, '2025-11-17 16:13:52', NULL, '2025-11-26 16:51:30'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (63, 2, 1, 109, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (62, 2, 1, 108, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (61, 2, 2, 8, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (60, 2, 2, 9, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (59, 2, 1, 118, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (58, 2, 1, 101, 0, NULL, '2025-11-17 16:13:52', NULL, '2025-11-18 10:50:06'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (57, 2, 1, 100, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (56, 2, 2, 1, 0, NULL, '2025-11-17 16:13:52', NULL, '2025-11-26 16:51:22'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (55, 2, 2, 2, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (54, 2, 2, 3, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (53, 2, 2, 4, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (52, 2, 2, 5, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (51, 2, 2, 6, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (50, 2, 2, 7, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (49, 2, 1, 119, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (48, 2, 1, 117, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (47, 2, 1, 116, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (46, 2, 1, 115, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (45, 2, 1, 114, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (44, 2, 1, 113, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (43, 2, 1, 112, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (42, 2, 1, 111, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (41, 2, 1, 110, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (40, 2, 1, 2, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (39, 2, 1, 1, 0, NULL, '2025-11-17 16:13:52', NULL, '2025-11-26 16:51:19'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (38, 1, 2, 8, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (37, 1, 2, 9, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (36, 1, 1, 118, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (35, 1, 1, 101, 0, NULL, '2025-11-17 16:13:52', NULL, '2025-11-18 10:47:45'); INSERT INTO `base_message_rel` (`id`, `message_id`, `user_type`, `user_id`, `read_state`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (34, 1, 1, 100, 0, NULL, '2025-11-17 16:13:52', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_operation_log -- ---------------------------- DROP TABLE IF EXISTS `base_operation_log`; CREATE TABLE `base_operation_log` ( `log_id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键', `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `operation_time` datetime DEFAULT NULL COMMENT '操作时间', `user_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '操作用户', `user_id` bigint DEFAULT NULL COMMENT '用户ID', `user_role` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '用户角色', `module` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '操作模块', `operation_type` smallint DEFAULT NULL COMMENT '操作类型:1-新增,2-修改,3-删除,4-查询,5-导入,6-导出,7-登录,8-登出', `content` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '操作内容', `ip` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'IP地址', `ip_region` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'IP属地', `status` smallint DEFAULT '1' COMMENT '操作状态:0-失败,1-成功', `duration` varchar(255) DEFAULT NULL COMMENT '操作耗时', `userAgent` varchar(255) DEFAULT NULL COMMENT '操作设备', `args` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '操作参数', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`log_id`) ) ENGINE=InnoDB AUTO_INCREMENT=287 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of base_operation_log -- ---------------------------- BEGIN; INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 1, NULL, 'a', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 1, NULL, 'b', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, 2, '2025-10-03 21:12:26', 'bbb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 1, '2025-10-30 17:04:24', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', NULL, '2025-10-30 17:04:24', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 1, '2025-10-30 17:04:29', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', NULL, '2025-10-30 17:04:29', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (9, 1, '2025-10-30 17:04:35', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=2', NULL, '2025-10-30 17:04:35', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (10, 1, '2025-10-30 17:04:58', 'admin', 1, '超级管理员', '系统设置', 2, '修改学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"apps\":\"1,2,3,4,5,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:14\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/10/28/360截图20250925165458_20251028185940A007.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"石大鹏\",\"mgrGender\":\"1\",\"mgrPhone\":\"13811111111\",\"schoolId\":2,\"schoolName\":\"陕西研筑大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-10-30 17:04:58\"}', NULL, '2025-10-30 17:04:58', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (11, 1, '2025-10-30 17:04:58', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', NULL, '2025-10-30 17:04:58', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (12, 1, '2025-10-30 17:28:39', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 17:28:39', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (13, 1, '2025-10-30 17:28:44', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 17:28:44', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (14, 1, '2025-10-30 17:28:44', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 0, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 17:28:44', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (15, 1, '2025-10-30 17:28:50', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 17:28:50', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (16, 1, '2025-10-30 17:28:51', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 17:28:51', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (17, 1, '2025-10-30 17:28:51', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 0, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 17:28:51', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (18, 1, '2025-10-30 17:53:36', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 17:53:36', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (19, 1, '2025-10-30 18:19:00', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 18:19:00', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (20, 1, '2025-10-30 18:22:40', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 18:22:40', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (21, 1, '2025-10-30 18:22:43', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 18:22:43', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (22, 1, '2025-10-30 18:22:47', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 18:22:47', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (23, 1, '2025-10-30 18:28:31', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 18:28:31', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (24, 1, '2025-10-30 18:28:56', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 18:28:56', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (25, 1, '2025-10-30 18:28:56', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 18:28:56', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (26, 1, '2025-10-30 18:28:56', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 18:28:56', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (27, 1, '2025-10-30 18:28:56', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 18:28:56', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (28, 1, '2025-10-30 20:17:55', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 20:17:55', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (29, 1, '2025-10-30 20:20:36', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 20:20:36', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (30, 1, '2025-10-30 20:20:38', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 20:20:38', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (31, 1, '2025-10-30 20:21:52', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 20:21:52', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (32, 1, '2025-10-30 20:21:57', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 20:21:57', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (33, 1, '2025-10-30 20:31:33', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 0, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 20:31:33', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (34, 1, '2025-10-30 20:32:25', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 20:32:25', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (35, 1, '2025-10-30 20:32:31', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 20:32:31', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (36, 1, '2025-10-30 20:32:53', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 20:32:53', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (37, 2, '2025-10-30 21:08:21', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 21:08:21', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (38, 1, '2025-10-30 22:48:49', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '{\"isDel\":0}', 'admin', '2025-10-30 22:48:49', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (39, 1, '2025-10-30 22:48:50', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 22:48:50', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (40, 1, '2025-10-30 22:50:24', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '{\"isDel\":0}', 'admin', '2025-10-30 22:50:24', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (41, 1, '2025-10-30 22:50:26', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 22:50:26', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (42, 1, '2025-10-30 22:52:11', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '{}', 'admin', '2025-10-30 22:52:11', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (43, 1, '2025-10-30 22:52:44', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '{}', 'admin', '2025-10-30 22:52:44', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (44, 1, '2025-10-30 22:59:36', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 22:59:36', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (45, 1, '2025-10-30 22:59:40', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 22:59:40', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (46, 1, '2025-10-30 23:00:05', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:00:05', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (47, 1, '2025-10-30 23:00:20', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:00:20', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (48, 1, '2025-10-30 23:00:26', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:00:26', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (49, 1, '2025-10-30 23:00:32', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:00:32', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (50, 1, '2025-10-30 23:02:11', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:02:11', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (51, 1, '2025-10-30 23:03:14', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:03:14', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (52, 1, '2025-10-30 23:03:55', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:03:55', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (53, 1, '2025-10-30 23:05:32', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:05:32', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (54, 1, '2025-10-30 23:06:05', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:06:05', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (55, 1, '2025-10-30 23:08:33', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:08:33', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (56, 1, '2025-10-30 23:08:52', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:08:52', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (57, 1, '2025-10-30 23:09:00', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:09:00', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (58, 1, '2025-10-30 23:09:42', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:09:42', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (59, 1, '2025-10-30 23:09:48', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:09:48', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (60, 1, '2025-10-30 23:09:50', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:09:50', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (61, 1, '2025-10-30 23:11:35', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:11:35', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (62, 1, '2025-10-30 23:14:01', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:14:01', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (63, 1, '2025-10-30 23:16:05', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:16:05', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (64, 1, '2025-10-30 23:16:24', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:16:24', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (65, 1, '2025-10-30 23:22:37', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:22:37', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (66, 1, '2025-10-30 23:22:44', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:22:44', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (67, 1, '2025-10-30 23:22:46', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:22:46', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (68, 1, '2025-10-30 23:22:52', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:22:52', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (69, 1, '2025-10-30 23:22:59', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:22:59', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (70, 1, '2025-10-30 23:24:54', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:24:54', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (71, 1, '2025-10-30 23:25:00', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:25:00', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (72, 1, '2025-10-30 23:25:10', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:25:10', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (73, 1, '2025-10-30 23:26:04', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:26:04', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (74, 1, '2025-10-30 23:29:20', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:29:20', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (75, 1, '2025-10-30 23:29:44', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:29:44', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (76, 1, '2025-10-30 23:29:49', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:29:49', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (77, 1, '2025-10-30 23:30:00', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:30:00', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (78, 1, '2025-10-30 23:30:30', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:30:30', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (79, 1, '2025-10-30 23:30:42', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:30:42', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (80, 1, '2025-10-30 23:31:28', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:31:28', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (81, 1, '2025-10-30 23:31:39', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:31:39', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (82, 1, '2025-10-30 23:31:40', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:31:40', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (83, 1, '2025-10-30 23:35:22', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:35:22', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (84, 1, '2025-10-30 23:35:23', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:35:23', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (85, 1, '2025-10-30 23:36:27', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:36:27', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (86, 1, '2025-10-30 23:36:31', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:36:31', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (87, 1, '2025-10-30 23:36:32', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:36:32', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (88, 1, '2025-10-30 23:36:45', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:36:45', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (89, 1, '2025-10-30 23:37:18', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:37:18', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (90, 1, '2025-10-30 23:37:18', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:37:18', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (91, 1, '2025-10-30 23:37:30', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:37:30', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (92, 1, '2025-10-30 23:37:32', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:37:32', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (93, 1, '2025-10-30 23:37:47', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:37:47', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (94, 1, '2025-10-30 23:38:31', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:38:31', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (95, 1, '2025-10-30 23:39:36', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:39:36', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (96, 1, '2025-10-30 23:39:37', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:39:37', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (97, 1, '2025-10-30 23:39:39', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:39:39', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (98, 1, '2025-10-30 23:39:39', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:39:39', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (99, 1, '2025-10-30 23:39:43', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:39:43', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (100, 1, '2025-10-30 23:39:43', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:39:43', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (101, 1, '2025-10-30 23:40:06', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:40:06', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (102, 1, '2025-10-30 23:40:06', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:40:06', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (103, 1, '2025-10-30 23:41:44', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:41:44', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (104, 1, '2025-10-30 23:41:45', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:41:45', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (105, 1, '2025-10-30 23:42:33', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:42:33', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (106, 1, '2025-10-30 23:42:44', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:42:44', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (107, 1, '2025-10-30 23:42:51', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:42:51', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, 1, '2025-10-30 23:44:52', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '{\"isDel\":0}', 'admin', '2025-10-30 23:44:52', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, 1, '2025-10-30 23:44:53', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '学校ID=1', 'admin', '2025-10-30 23:44:53', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (110, 1, '2025-10-30 23:47:53', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 23:47:53', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (111, 1, '2025-10-30 23:47:54', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 23:47:54', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (112, 1, '2025-10-30 23:48:18', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 23:48:18', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (113, 1, '2025-10-30 23:48:19', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用列表', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{}', 'admin', '2025-10-30 23:48:19', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (114, 1, '2025-10-30 23:48:27', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.5.0.511', '{\"isDel\":0}', 'admin', '2025-10-30 23:48:27', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (115, 1, '2025-10-30 23:49:34', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 23:49:34', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (116, 1, '2025-10-30 23:49:55', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用列表', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{}', 'admin', '2025-10-30 23:49:55', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (117, 1, '2025-10-30 23:50:02', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用详细信息', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', 'appId=1', 'admin', '2025-10-30 23:50:02', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (118, 1, '2025-10-30 23:50:11', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 23:50:11', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (119, 1, '2025-10-30 23:50:14', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用列表', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{}', 'admin', '2025-10-30 23:50:14', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (120, 1, '2025-10-30 23:50:14', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-30 23:50:14', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (121, 1, '2025-10-30 23:50:30', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用列表', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{}', 'admin', '2025-10-30 23:50:30', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (122, 1, '2025-10-30 23:51:20', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用列表', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{}', 'admin', '2025-10-30 23:51:20', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (123, 1, '2025-10-30 23:51:24', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 23:51:24', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (124, 1, '2025-10-30 23:51:27', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{}', 'admin', '2025-10-30 23:51:27', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (125, 1, '2025-10-30 23:51:32', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-30 23:51:32', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (126, 1, '2025-10-31 00:00:55', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-31 00:00:55', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (127, 1, '2025-10-31 00:00:57', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用列表', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{}', 'admin', '2025-10-31 00:00:57', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (128, 1, '2025-10-31 00:01:47', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-31 00:01:47', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (129, 1, '2025-10-31 00:01:51', 'admin', 1, '超级管理员', '系统设置', 4, '查询应用列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{}', 'admin', '2025-10-31 00:01:51', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (130, 1, '2025-10-31 00:01:51', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=8', 'admin', '2025-10-31 00:01:51', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (131, 1, '2025-10-31 00:01:53', 'admin', 1, '超级管理员', '系统设置', 2, '修改学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"apps\":\"1,2,3,8,1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-29 10:48:38\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/10/29/logo1_20251029104802A005.png\",\"mail\":\"aab@aa.com\",\"manager\":\"王二小\",\"mgrGender\":\"0\",\"mgrPhone\":\"15333333333\",\"schoolId\":8,\"schoolName\":\"xx大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-10-31 00:01:52\"}', 'admin', '2025-10-31 00:01:53', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (132, 1, '2025-10-31 00:01:53', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '{\"isDel\":0}', 'admin', '2025-10-31 00:01:53', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (133, 1, '2025-10-31 09:36:50', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '{\"isDel\":0}', 'admin', '2025-10-31 09:36:50', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (134, 1, '2025-10-31 09:36:51', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:36:51', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (135, 1, '2025-10-31 09:42:05', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:42:05', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (136, 1, '2025-10-31 09:43:57', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:43:57', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (137, 1, '2025-10-31 09:45:19', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:45:19', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (138, 1, '2025-10-31 09:45:33', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:45:33', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (139, 1, '2025-10-31 09:45:39', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:45:39', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (140, 1, '2025-10-31 09:46:48', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:46:48', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (141, 1, '2025-10-31 09:46:54', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:46:54', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (142, 1, '2025-10-31 09:47:09', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:47:09', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (143, 1, '2025-10-31 09:48:06', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:48:06', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (144, 1, '2025-10-31 09:48:23', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:48:23', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (145, 1, '2025-10-31 09:48:25', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:48:25', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (146, 1, '2025-10-31 09:48:35', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36 Edg/141.0.0.0', '学校ID=1', 'admin', '2025-10-31 09:48:35', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (147, 1, '2025-10-31 09:50:47', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:50:47', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (148, 1, '2025-10-31 09:51:44', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:51:44', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (149, 1, '2025-10-31 09:53:43', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:53:43', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (150, 1, '2025-10-31 09:54:08', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:54:08', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (151, 1, '2025-10-31 09:54:36', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:54:36', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (152, 1, '2025-10-31 09:54:49', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:54:49', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (153, 1, '2025-10-31 09:55:16', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:55:16', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (154, 1, '2025-10-31 09:55:30', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:55:30', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (155, 1, '2025-10-31 09:55:32', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:55:32', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (156, 1, '2025-10-31 09:55:51', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:55:51', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (157, 1, '2025-10-31 09:57:35', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:57:35', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (158, 1, '2025-10-31 09:59:29', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 09:59:29', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (159, 1, '2025-10-31 10:02:20', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:02:20', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (160, 1, '2025-10-31 10:03:08', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:03:08', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (161, 1, '2025-10-31 10:03:33', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:03:33', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (162, 1, '2025-10-31 10:04:10', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:04:10', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (163, 1, '2025-10-31 10:04:28', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:04:28', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (164, 1, '2025-10-31 10:07:05', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:07:05', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (165, 1, '2025-10-31 10:07:55', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:07:55', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (166, 1, '2025-10-31 10:08:21', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:08:21', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (167, 1, '2025-10-31 10:08:43', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:08:43', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (168, 1, '2025-10-31 10:08:59', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:08:59', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (169, 1, '2025-10-31 10:09:35', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:09:35', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (170, 1, '2025-10-31 10:10:13', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:10:13', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (171, 1, '2025-10-31 10:12:15', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:12:15', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (172, 1, '2025-10-31 10:12:48', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:12:48', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (173, 1, '2025-10-31 10:14:32', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:14:32', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (174, 1, '2025-10-31 10:15:10', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:15:10', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (175, 1, '2025-10-31 10:15:28', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:15:28', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (176, 1, '2025-10-31 10:18:47', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:18:47', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (177, 1, '2025-10-31 10:18:58', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:18:58', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (178, 1, '2025-10-31 10:25:39', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:25:39', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (179, 1, '2025-10-31 10:27:46', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:27:46', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (180, 1, '2025-10-31 10:28:50', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:28:50', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (181, 1, '2025-10-31 10:29:01', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:29:01', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (182, 1, '2025-10-31 10:30:41', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:30:41', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (183, 1, '2025-10-31 10:30:54', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:30:54', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (184, 1, '2025-10-31 10:31:08', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:31:08', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (185, 1, '2025-10-31 10:32:05', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:32:05', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (186, 1, '2025-10-31 10:33:09', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:33:09', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (187, 1, '2025-10-31 10:33:43', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:33:43', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (188, 1, '2025-10-31 10:33:50', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:33:50', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (189, 1, '2025-10-31 10:34:21', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:34:21', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (190, 1, '2025-10-31 10:34:42', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:34:42', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (191, 1, '2025-10-31 10:34:55', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:34:55', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (192, 1, '2025-10-31 10:35:40', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:35:40', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (193, 1, '2025-10-31 10:35:52', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:35:52', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (194, 1, '2025-10-31 10:36:11', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:36:11', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (195, 1, '2025-10-31 10:36:25', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:36:25', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (196, 1, '2025-10-31 10:36:49', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:36:49', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (197, 1, '2025-10-31 10:37:02', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:37:02', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (198, 1, '2025-10-31 10:37:34', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:37:34', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (199, 1, '2025-10-31 10:37:46', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:37:46', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (200, 1, '2025-10-31 10:40:13', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:40:13', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (201, 1, '2025-10-31 10:40:16', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:40:16', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (202, 1, '2025-10-31 10:41:45', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:41:45', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (203, 1, '2025-10-31 10:42:58', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:42:58', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (204, 1, '2025-10-31 10:47:18', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:47:18', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (205, 1, '2025-10-31 10:47:39', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:47:39', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (206, 1, '2025-10-31 10:50:20', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:50:20', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (207, 1, '2025-10-31 10:50:37', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:50:37', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (208, 1, '2025-10-31 10:50:52', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:50:52', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (209, 1, '2025-10-31 10:50:55', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:50:55', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (210, 1, '2025-10-31 10:51:03', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:51:03', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (211, 1, '2025-10-31 10:51:21', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:51:21', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (212, 1, '2025-10-31 10:52:01', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:52:01', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (213, 1, '2025-10-31 10:52:38', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:52:38', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (214, 1, '2025-10-31 10:52:45', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:52:45', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (215, 1, '2025-10-31 10:53:24', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:53:24', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (216, 1, '2025-10-31 10:53:32', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:53:32', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (217, 1, '2025-10-31 10:53:48', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:53:48', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (218, 1, '2025-10-31 10:54:08', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:54:08', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (219, 1, '2025-10-31 10:54:23', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:54:23', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (220, 1, '2025-10-31 10:54:34', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:54:34', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (221, 1, '2025-10-31 10:54:50', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36', '{\"isDel\":0}', 'admin', '2025-10-31 10:54:50', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (222, 1, '2025-10-31 10:54:54', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36', '学校ID=1', 'admin', '2025-10-31 10:54:54', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (223, 1, '2025-10-31 10:54:54', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:54:54', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (224, 1, '2025-10-31 10:55:06', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:55:06', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (225, 1, '2025-10-31 10:55:09', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:55:09', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (226, 1, '2025-10-31 10:55:17', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:55:17', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (227, 1, '2025-10-31 10:56:49', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:56:49', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (228, 1, '2025-10-31 10:57:31', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:57:31', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (229, 1, '2025-10-31 10:58:16', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 10:58:16', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (230, 1, '2025-10-31 11:00:44', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36', '学校ID=1', 'admin', '2025-10-31 11:00:44', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (231, 1, '2025-10-31 11:01:51', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 11:01:51', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (232, 1, '2025-10-31 11:04:28', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 11:04:28', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (233, 1, '2025-10-31 11:05:52', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 11:05:52', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (234, 1, '2025-10-31 11:08:33', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '{\"isDel\":0}', 'admin', '2025-10-31 11:08:33', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (235, 1, '2025-10-31 11:08:34', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '0:0:0:0:0:0:0:1%0', NULL, 1, NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 11:08:34', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (236, 1, '2025-10-31 14:35:41', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 14:35:41', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (237, 1, '2025-10-31 15:14:51', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 15:14:51', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (238, 1, '2025-10-31 15:22:25', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 15:22:25', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (239, 1, '2025-10-31 15:32:09', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 15:32:09', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (240, 1, '2025-10-31 15:32:09', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 15:32:09', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (241, 1, '2025-10-31 15:38:49', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 15:38:49', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (242, 1, '2025-10-31 15:39:02', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 15:39:02', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (243, 1, '2025-10-31 16:22:01', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 16:22:01', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (244, 1, '2025-10-31 16:22:30', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 16:22:30', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (245, 1, '2025-10-31 16:35:08', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 16:35:08', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (246, 1, '2025-10-31 17:09:24', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息列表', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '{\"isDel\":0}', 'admin', '2025-10-31 17:09:24', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (247, 1, '2025-10-31 17:09:25', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:09:25', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (248, 1, '2025-10-31 17:10:07', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:10:07', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (249, 1, '2025-10-31 17:10:45', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:10:45', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (250, 1, '2025-10-31 17:13:20', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:13:20', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (251, 1, '2025-10-31 17:13:46', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:13:46', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (252, 1, '2025-10-31 17:13:49', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:13:49', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (253, 1, '2025-10-31 17:15:59', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:15:59', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (254, 1, '2025-10-31 17:16:13', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:16:13', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (255, 1, '2025-10-31 17:16:29', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:16:29', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (256, 1, '2025-10-31 17:16:46', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:16:46', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (257, 1, '2025-10-31 17:16:52', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:16:52', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (258, 1, '2025-10-31 17:16:54', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:16:54', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (259, 1, '2025-10-31 17:17:05', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:17:05', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (260, 1, '2025-10-31 17:18:06', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:18:06', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (261, 1, '2025-10-31 17:18:42', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:18:42', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (262, 1, '2025-10-31 17:19:19', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:19:19', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (263, 1, '2025-10-31 17:25:20', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:25:20', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (264, 1, '2025-10-31 17:31:52', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:31:52', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (265, 1, '2025-10-31 17:47:58', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:47:58', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (266, 1, '2025-10-31 17:50:24', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:50:24', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (267, 1, '2025-10-31 17:50:31', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 17:50:31', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (268, 1, '2025-10-31 18:12:16', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:12:16', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (269, 1, '2025-10-31 18:12:43', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:12:43', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (270, 1, '2025-10-31 18:16:14', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:16:14', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (271, 1, '2025-10-31 18:20:37', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:20:37', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (272, 1, '2025-10-31 18:20:46', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:20:46', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (273, 1, '2025-10-31 18:25:00', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:25:00', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (274, 1, '2025-10-31 18:25:50', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:25:50', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (275, 1, '2025-10-31 18:30:33', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:30:33', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (276, 1, '2025-10-31 18:35:29', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:35:29', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (277, 1, '2025-10-31 18:35:35', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:35:35', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (278, 1, '2025-10-31 18:37:40', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:37:40', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (279, 1, '2025-10-31 18:38:02', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:38:02', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (280, 1, '2025-10-31 18:39:10', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:39:10', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (281, 1, '2025-10-31 18:39:35', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:39:35', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (282, 1, '2025-10-31 18:49:38', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:49:38', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (283, 1, '2025-10-31 18:50:26', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:50:26', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (284, 1, '2025-10-31 18:51:36', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:51:36', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (285, 1, '2025-10-31 18:53:54', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:53:54', NULL, NULL); INSERT INTO `base_operation_log` (`log_id`, `sch_id`, `operation_time`, `user_name`, `user_id`, `user_role`, `module`, `operation_type`, `content`, `ip`, `ip_region`, `status`, `duration`, `userAgent`, `args`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (286, 1, '2025-10-31 18:55:05', 'admin', 1, '超级管理员', '系统设置', 4, '查询学校信息', '127.0.0.1', NULL, 1, '30MS', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 QuarkPC/4.6.5.579', '学校ID=1', 'admin', '2025-10-31 18:55:05', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_organization -- ---------------------------- DROP TABLE IF EXISTS `base_organization`; CREATE TABLE `base_organization` ( `id` bigint NOT NULL AUTO_INCREMENT, `school_id` bigint DEFAULT NULL COMMENT '学校ID', `org_name` varchar(255) DEFAULT NULL COMMENT '组织名称', `org_pid` bigint DEFAULT NULL COMMENT '父级ID', `org_level` int DEFAULT NULL COMMENT '层级1-院校2-专业3-学届4-学年5-班级', `org_no` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '组织编号', `org_desc` varchar(1024) DEFAULT NULL COMMENT '组织描述', `is_current` int DEFAULT '0' COMMENT '是否当前学年', `enter_year` varchar(50) DEFAULT NULL COMMENT '入学年份', `start_year` int DEFAULT NULL COMMENT '起始学年', `end_year` int DEFAULT NULL COMMENT '结束学年', `org_state` int DEFAULT '1' COMMENT '状态1.未处理 2.已处理', `is_del` int DEFAULT NULL, `state` int DEFAULT NULL, `remark` varchar(255) DEFAULT NULL, `create_by` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='组织信息'; -- ---------------------------- -- Records of base_organization -- ---------------------------- BEGIN; INSERT INTO `base_organization` (`id`, `school_id`, `org_name`, `org_pid`, `org_level`, `org_no`, `org_desc`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 1, '院系01', 0, 1, 'D001', NULL, 0, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_organization` (`id`, `school_id`, `org_name`, `org_pid`, `org_level`, `org_no`, `org_desc`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 1, '专业01', 1, 2, 'Z001', NULL, 0, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_organization` (`id`, `school_id`, `org_name`, `org_pid`, `org_level`, `org_no`, `org_desc`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, '2025届', 2, 3, 'Q001', NULL, 0, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_organization` (`id`, `school_id`, `org_name`, `org_pid`, `org_level`, `org_no`, `org_desc`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 1, '学年01', 3, 4, 'T001', NULL, 0, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `base_organization` (`id`, `school_id`, `org_name`, `org_pid`, `org_level`, `org_no`, `org_desc`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, '班级01', 4, 5, 'C01', NULL, 0, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_resource -- ---------------------------- DROP TABLE IF EXISTS `base_resource`; CREATE TABLE `base_resource` ( `id` bigint NOT NULL AUTO_INCREMENT, `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `name` varchar(255) DEFAULT NULL COMMENT '资源名称', `author_id` bigint DEFAULT NULL COMMENT '作者ID', `source` varchar(255) DEFAULT NULL COMMENT '来源:1-系统内置、2-自主创作、3-网络', `source_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '资源网址,当来源于网络时此字段可用', `cover_img_path` varchar(255) DEFAULT NULL COMMENT '缩略图', `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '资源简介', `view_count` bigint DEFAULT NULL COMMENT '观看数量', `download_count` bigint DEFAULT NULL COMMENT '下载数量', `file_config` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '文件JSON配置', `category_id` bigint DEFAULT NULL COMMENT '资源分类ID', `subject_id` bigint DEFAULT NULL COMMENT '学科门类ID', `type_id` bigint DEFAULT NULL COMMENT '资源类型ID', `tag_ids` varchar(255) DEFAULT NULL COMMENT '资源标签逗号分隔ID', `stage` smallint DEFAULT NULL COMMENT '学段:1-大学,2-高中,3-初中,4-小学,5-其他', `premium_types` varchar(255) DEFAULT NULL COMMENT '精品资源类型逗号分隔串:1-精品资源,2- 精品课程,3-示范资源,4-示范课程', `approval_state` smallint DEFAULT '0' COMMENT '审批状态:0-草稿,1-待审批,2-已通过,3-已驳回', `approver_id` bigint DEFAULT NULL COMMENT '审批人ID', `approval_advice` varchar(255) DEFAULT NULL COMMENT '审批意见', `state` smallint DEFAULT NULL COMMENT '资源状态:1-启用,0-禁用', `is_del` int DEFAULT '0' COMMENT '删除标识:0-未删,1-已删', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='资源表'; -- ---------------------------- -- Records of base_resource -- ---------------------------- BEGIN; INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (45, 1, '测试视频资源1', 1, '1', '', '/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg', '

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

', 28, 0, '[{\"name\":\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\",\"url\":\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\",\"originalName\":null,\"size\":14794783,\"metadata\":null,\"uid\":1764142124231,\"status\":\"success\"}]', 1, 2, 2, '1', 1, '1,2', 2, NULL, NULL, 1, 0, '1', '2025-11-12 15:29:05', '1', '2026-01-04 16:59:13'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (46, 1, '测试视频2222', 1, '1', '', '/statics/2025/11/26/20250610_183001_001_20251126153036A005.jpg', '

测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222

', 8, 0, '[{\"name\":\"2月11日(5)_20251126153128A006.mp4\",\"url\":\"/statics/2025/11/26/2月11日(5)_20251126153128A006.mp4\",\"originalName\":null,\"size\":8891978,\"metadata\":null,\"uid\":1764142289089,\"status\":\"success\"}]', 2, 2, 2, '2', 2, '1', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:31:37', '1', '2026-01-19 16:07:02'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (47, 1, '测试课件111111', 1, '1', '', '', '

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

', 2, 0, '[{\"name\":\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\",\"url\":\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\",\"originalName\":null,\"size\":888915,\"metadata\":null,\"uid\":1764142351913,\"status\":\"success\"}]', 1, 2, 1, '1', 1, '', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:32:35', '18', '2025-12-18 17:18:46'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (48, 1, '测试课件222222', 1, '1', '', '', '

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

', 2, 0, '[{\"name\":\"课间每日一考题英语练习_20251126153335A008.pdf\",\"url\":\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\",\"originalName\":null,\"size\":19353929,\"metadata\":null,\"uid\":1764142415469,\"status\":\"success\"}]', 2, 3, 1, '1', 3, '2', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:33:39', '10', '2025-12-08 11:30:05'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (49, 1, '测试教案11111', 1, '1', '', '/statics/2025/11/26/微信截图_20250425092336_20251126153554A010.png', '

测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111

', 1, 0, '[{\"name\":\"课件_20251126153740A011.pptx\",\"url\":\"/statics/2025/11/26/课件_20251126153740A011.pptx\",\"originalName\":null,\"size\":39665,\"metadata\":null,\"uid\":1764142660332,\"status\":\"success\"}]', 1, 2, 3, '1,2', 1, '', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:37:52', '1', '2025-11-26 15:38:20'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (50, 1, '测试课件2222222', 1, '1', '', '/statics/2025/11/26/ScreenShot_2025-11-26_153834_725_20251126153846A012.png', '

测试课件2222222测试课件2222222测试课件2222222测试课件2222222测试课件2222222

', 2, 0, '[{\"name\":\"课件_20251126153947A013.pptx\",\"url\":\"/statics/2025/11/26/课件_20251126153947A013.pptx\",\"originalName\":null,\"size\":39665,\"metadata\":null,\"uid\":1764142787999,\"status\":\"success\"}]', 1, 2, 3, '3,4', 2, '1', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:39:50', '1', '2025-12-05 16:32:56'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (51, 1, '测试图片1111', 1, '1', '', '/statics/2025/11/26/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251126154019A014.png', '

测试图片1111测试图片1111测试图片1111测试图片1111测试图片1111

', 1, 0, '[{\"name\":\"u=2024464793,1878830599&fm=253&app=138&f=JPEG_20251126154029A015.jpg\",\"url\":\"/statics/2025/11/26/u=2024464793,1878830599&fm=253&app=138&f=JPEG_20251126154029A015.jpg\",\"originalName\":null,\"size\":156070,\"metadata\":null,\"uid\":1764142829819,\"status\":\"success\"}]', 2, 2, 4, '2,3', 1, '', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:40:37', '133', '2025-11-28 11:22:52'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (52, 1, '测试图片222222', 1, '1', '', '/statics/2025/11/26/ScreenShot_2025-11-26_153834_725_20251126154045A016.png', '

测试图片1111测试图片1111测试图片1111测试图片1111测试图片1111

', 1, 0, '[{\"name\":\"c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251126154114A017.png\",\"url\":\"/statics/2025/11/26/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251126154114A017.png\",\"originalName\":null,\"size\":1660147,\"metadata\":null,\"uid\":1764142875196,\"status\":\"success\"}]', 2, 2, 4, '2', 3, '1', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:41:26', '8', '2025-12-18 10:50:46'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (53, 1, '测试音频111111', 1, '1', '', '/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154246A018.png', '

测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111

', 0, 0, '[{\"name\":\"Empire of Angels_20251126154315A019.mp3\",\"url\":\"/statics/2025/11/26/Empire of Angels_20251126154315A019.mp3\",\"originalName\":null,\"size\":5065709,\"metadata\":null,\"uid\":1764142995804,\"status\":\"success\"}]', 1, 2, 5, '3', 2, '', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:43:22', NULL, NULL); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (54, 1, '测试音频22222222', 1, '1', '', '/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154418A021.png', '

测试音频111111测试音频111111测试音频111111测试音频2222222222222

', 1, 0, '[{\"name\":\"Immortal_20251126154358A020.mp3\",\"url\":\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\",\"originalName\":null,\"size\":3965640,\"metadata\":null,\"uid\":1764143038890,\"status\":\"success\"}]', 2, 2, 5, '4,5', 2, '1', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:44:26', '14', '2025-12-01 11:38:57'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (55, 1, '测试链接1111111111', 1, '3', 'https://image.baidu.com', '/statics/2025/11/26/ScreenShot_2025-11-26_154535_535_20251126154543A022.png', '

飒飒飒飒的

', 0, 0, '[]', 2, 3, 6, '2', 1, '', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:46:46', NULL, NULL); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (56, 1, '测试链接222222222', 1, '3', 'https://www.hifihi.com', '/statics/2025/11/26/ScreenShot_2025-11-26_154535_535_20251126154704A023.png', '

啊实打实打算

', 1, 0, '[]', 2, 3, 6, '2', 3, '', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:48:02', '100', '2025-11-27 16:37:47'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (57, 1, '测试模型1111111', 1, '1', '', '/statics/2025/11/26/图片12_20251126154907A024.png', '

测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111

', 3, 0, '[{\"name\":\"IndustrialBuilding10_20251126154935A025.obj\",\"url\":\"/statics/虚拟仿真3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\",\"originalName\":null,\"size\":598034,\"metadata\":\"虚拟仿真3dModel\",\"uid\":1764143375410,\"status\":\"success\"}]', 1, 2, 8, '2', 2, '', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:49:38', '1', '2026-01-06 16:13:51'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (58, 1, '测试图书1111111111', 1, '1', '', '/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png', '

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

', 2, 0, '[{\"name\":\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\",\"url\":\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\",\"originalName\":null,\"size\":888915,\"metadata\":null,\"uid\":1764143538858,\"status\":\"success\"}]', 2, 2, 10, '2', 1, '1', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:52:29', '1', '2025-12-25 20:56:22'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (59, 1, '测试图书2222222222', 1, '1', '', '/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155244A028.png', '

测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222

', 5, 0, '[{\"name\":\"寒门诡将12局+(伏羲)_20251126155321A029.pdf\",\"url\":\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155321A029.pdf\",\"originalName\":null,\"size\":888915,\"metadata\":null,\"uid\":1764143602160,\"status\":\"success\"}]', 2, 2, 10, '3', 2, '4', 2, NULL, NULL, 1, 0, '1', '2025-11-26 15:53:26', '1', '2025-12-25 20:55:31'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (60, 1, '测试展馆111111111111', 1, '1', '', '/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126175139A033.png', '

测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111

', 3, 0, '[{\"name\":\"index.html\",\"url\":\"/statics/panorama/2025/11/26/思想道德与法治-第一章-第一节_20251126175211A034/index.html\",\"originalName\":\"思想道德与法治-第一章-第一节.zip\",\"size\":19729476,\"metadata\":\"panorama\",\"uid\":1764150732088,\"status\":\"success\"}]', 2, 2, 7, '2', 3, '4', 2, NULL, NULL, 1, 0, '1', '2025-11-26 17:52:16', '1', '2026-01-19 16:04:59'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (61, 1, '测试展馆2222222222', 1, '1', '', '/statics/2025/11/26/ScreenShot_2025-11-26_175328_956_20251126175341A037.png', '

测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222

', 7, 0, '[{\"name\":\"index.html\",\"url\":\"/statics/panorama/2025/11/26/思想道德与法治-第一章-第二节_20251126175306A035/index.html\",\"originalName\":\"思想道德与法治-第一章-第二节.zip\",\"size\":19729476,\"metadata\":\"panorama\",\"uid\":1764150787039,\"status\":\"success\"}]', 1, 2, 7, '3', 3, '', 2, NULL, NULL, 1, 0, '1', '2025-11-26 17:53:47', '1', '2025-12-04 17:45:07'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (62, 2, '1111', 100, '3', 'http://www.baidu.com', '', '

12

', 1, 0, '[]', 1, 1, 6, '1', 1, '', 2, 100, '', 1, 0, '1', '2025-11-27 10:02:38', '8', '2025-12-18 10:50:26'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (63, 21, '我的课件资源', 133, '2', '', '/statics/2025/11/28/bg1_20251128103245A002.jpg', '

哈哈哈哈😆

', 1, 0, '[{\"name\":\"采购需求和技术参数1104定稿_20251128104947A003.pdf\",\"url\":\"/statics/2025/11/28/采购需求和技术参数1104定稿_20251128104947A003.pdf\",\"originalName\":null,\"size\":345982,\"metadata\":null,\"uid\":1764298187770,\"status\":\"success\"}]', 1, 1, 1, '1', 1, '', 2, 133, '', 1, 0, '133', '2025-11-28 10:50:00', '133', '2025-11-28 10:51:17'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (64, 1, '第一章 红色展厅介绍', 1, '1', '', '/statics/2025/11/28/bg1_20251128114043A007.jpeg', '

哈哈哈哈

', 15, 0, '[{\"name\":\"index.html\",\"url\":\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\",\"originalName\":\"第一章红色虚拟展馆.zip\",\"size\":146428201,\"metadata\":\"virtualSimulation\",\"uid\":1764301392734,\"status\":\"success\"}]', 2, 1, 9, '1', 1, '1,4', 2, NULL, NULL, 1, 0, '1', '2025-11-28 11:45:32', '1', '2025-12-25 20:57:25'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (65, 1, 'test', 1, '1', '', '/statics/2025/11/28/logo1_20251128115157A009.png', '

资源简洁展厅士大夫士大夫

adasdads

', 3, 0, '[{\"name\":\"Node.js硬实战 115个核心技巧_20251128115906A010.pdf\",\"url\":\"/statics/2025/11/28/Node.js硬实战 115个核心技巧_20251128115906A010.pdf\",\"originalName\":null,\"size\":222985657,\"metadata\":null,\"uid\":1764302347115,\"status\":\"success\"}]', 1, 1, 1, '1', 1, '1,4', 2, NULL, NULL, 1, 0, '1', '2025-11-28 11:59:09', '1', '2025-12-22 11:19:08'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (66, 21, '我的测试视频', 133, '2', '', '', '

哈哈哈

', 0, 0, '[{\"name\":\"4-7-8_20251128120154A011.mp4\",\"url\":\"/statics/2025/11/28/4-7-8_20251128120154A011.mp4\",\"originalName\":null,\"size\":6682679,\"metadata\":null,\"uid\":1764302514460,\"status\":\"success\"}]', 2, 1, 2, '1', 1, '1', 2, 133, '', 1, 0, '133', '2025-11-28 12:02:02', '133', '2025-11-28 12:02:10'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (67, 1, '新疆图书', 1, '1', '', '/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png', '

无aasdasdasasdas

', 14, 0, '[{\"name\":\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\",\"url\":\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\",\"originalName\":null,\"size\":1941907,\"metadata\":null,\"uid\":1764315149037,\"status\":\"success\"}]', 1, 1, 10, '1', 1, '4', 2, NULL, NULL, 1, 0, '1', '2025-11-28 15:32:34', '1', '2026-01-19 16:06:08'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (68, 17, '咱们工人有力量', 123, '1', '', '/statics/2025/12/01/ScreenShot_2025-11-28_101830_689_20251201095441A001.png', '

咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量

', 2, 0, '[{\"name\":\"第14周作业_20251201095611A002.pdf\",\"url\":\"/statics/2025/12/01/第14周作业_20251201095611A002.pdf\",\"originalName\":null,\"size\":229144,\"metadata\":null,\"uid\":1764554171945,\"status\":\"success\"}]', 1, 2, 1, '1,2,3', 4, '3,4', 2, 123, '是', 1, 0, '123', '2025-12-01 09:56:18', '123', '2025-12-01 10:02:29'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (69, 17, '人民的名义', 123, '1', '', '/statics/2025/12/01/ScreenShot_2025-11-09_222743_637_20251201100321A003.png', '

人民的名义人民的名义人民的名义人民的名义人民的名义人民的名义人民的名义

', 1, 0, '[{\"name\":\"第14周作业_20251201100423A004.pdf\",\"url\":\"/statics/2025/12/01/第14周作业_20251201100423A004.pdf\",\"originalName\":null,\"size\":229144,\"metadata\":null,\"uid\":1764554664004,\"status\":\"success\"}]', 2, 2, 1, '6', 3, '4', 2, 123, '稍等', 1, 0, '123', '2025-12-01 10:04:29', '10', '2025-12-05 14:20:54'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (70, 1, '我的测试课程', 1, '1', '', '/statics/2025/12/04/3_20251204144800A001.png', '

1111

', 1, 0, '[]', 1, 2, 9, '1', 1, '1,2', 0, NULL, NULL, 1, 0, '1', '2025-12-04 14:51:41', '1', '2025-12-08 11:48:08'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (71, 17, '测试课件', 123, '', '', '/statics/2025/12/05/ScreenShot_2025-11-26_154235_768_20251205174931A031.png', '

测试课件测试课件测试课件测试课件测试课件

测试课件

测试课件

测试课件

测试课件

', 1, 0, '[{\"name\":\"c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166_20251205174956A032.png\",\"url\":\"/statics/2025/12/05/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166_20251205174956A032.png\",\"originalName\":null,\"size\":5128236,\"metadata\":null,\"uid\":1764928196117,\"status\":\"success\"}]', 2, 1, 4, '2', 2, '2', 0, NULL, NULL, 1, 0, '123', '2025-12-05 17:50:00', '123', '2025-12-05 17:50:08'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (72, 1, '我的测试课程003', 1, '2', '', '/statics/2025/12/11/quanjing_20251211101142A001.jpg', '

11111111

', 10, 0, '[{\"name\":\"中硕思政-需求说明书(4)_20251211101301A002.pdf\",\"url\":\"/statics/2025/12/11/中硕思政-需求说明书(4)_20251211101301A002.pdf\",\"originalName\":null,\"size\":5290893,\"metadata\":null,\"uid\":1765419180901,\"status\":\"success\"}]', 1, 1, 1, '3,2,4,1,5,6', 1, '4,3,2,1', 2, NULL, NULL, 1, 0, '1', '2025-12-11 10:13:03', '1', '2026-01-19 16:06:30'); INSERT INTO `base_resource` (`id`, `sch_id`, `name`, `author_id`, `source`, `source_url`, `cover_img_path`, `description`, `view_count`, `download_count`, `file_config`, `category_id`, `subject_id`, `type_id`, `tag_ids`, `stage`, `premium_types`, `approval_state`, `approver_id`, `approval_advice`, `state`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (73, 17, '1111', 123, '3', 'http://baidu.com', '', '

111

', 1, 0, '[]', 1, 1, 6, '1', 1, '', 2, 123, '1111', 1, 0, '123', '2025-12-17 11:25:04', '123', '2025-12-17 11:26:27'); COMMIT; -- ---------------------------- -- Table structure for base_resource_category -- ---------------------------- DROP TABLE IF EXISTS `base_resource_category`; CREATE TABLE `base_resource_category` ( `id` bigint NOT NULL AUTO_INCREMENT, `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `name` varchar(50) DEFAULT NULL COMMENT '分类名称', `icon_path` varchar(255) DEFAULT NULL COMMENT '分类图标', `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '分类描述', `is_del` smallint unsigned DEFAULT '0' COMMENT '删除标识:0-未删除,1-已删除', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='资源分类'; -- ---------------------------- -- Records of base_resource_category -- ---------------------------- BEGIN; INSERT INTO `base_resource_category` (`id`, `sch_id`, `name`, `icon_path`, `description`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 1, '党史学习', '/statics/2025/12/04/党史学习-12_20251204180245A004.png', '123', 0, '1', '2025-11-04 10:00:04', '1', '2025-12-04 18:02:50'); INSERT INTO `base_resource_category` (`id`, `sch_id`, `name`, `icon_path`, `description`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 1, '思想政治', '/statics/2025/12/04/社会主义核心价值观-13_20251204180312A005.png', '111', 0, '1', '2025-11-04 10:01:38', '1', '2025-12-04 18:03:14'); INSERT INTO `base_resource_category` (`id`, `sch_id`, `name`, `icon_path`, `description`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, '社会主义核心价值观', '/statics/2025/12/04/社会主义核心价值观-13_20251204180322A006.png', '', 0, '1', '2025-11-05 17:19:45', '1', '2025-12-04 18:03:24'); INSERT INTO `base_resource_category` (`id`, `sch_id`, `name`, `icon_path`, `description`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 1, '师德师风', '/statics/2025/12/04/师德师风建设-14_20251204180333A007.png', '沙发沙发是否发射点发顺丰到付', 0, '1', '2025-11-10 17:35:14', '1', '2025-12-04 18:03:44'); INSERT INTO `base_resource_category` (`id`, `sch_id`, `name`, `icon_path`, `description`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 1, '爱国主义教育', '/statics/2025/12/04/爱国主义教育_画板 11_20251204180356A008.png', '', 0, '1', '2025-11-11 16:52:35', '1', '2025-12-04 18:04:06'); COMMIT; -- ---------------------------- -- Table structure for base_resource_subject -- ---------------------------- DROP TABLE IF EXISTS `base_resource_subject`; CREATE TABLE `base_resource_subject` ( `id` bigint NOT NULL AUTO_INCREMENT, `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '学科门类名称', `icon_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '图标', `is_del` smallint DEFAULT '0' COMMENT '删除标识:0-未删除,1-已删除', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='学科门类'; -- ---------------------------- -- Records of base_resource_subject -- ---------------------------- BEGIN; INSERT INTO `base_resource_subject` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 1, ' 哲学', '/statics/2025/12/04/哲学_20251204180434A009.png', 0, '1', '2025-11-04 17:53:15', '1', '2025-12-04 18:04:35'); INSERT INTO `base_resource_subject` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 1, '经济学', '/statics/2025/12/04/经济学_20251204180444A010.png', 0, '1', '2025-11-04 18:33:40', '1', '2025-12-04 18:04:45'); INSERT INTO `base_resource_subject` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, '法学', '/statics/2025/12/04/法学_20251204180454A011.png', 0, '1', '2025-11-05 17:20:09', '1', '2025-12-04 18:04:55'); INSERT INTO `base_resource_subject` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 1, '教育学', '/statics/2025/12/04/教育学_20251204180504A012.png', 0, '1', '2025-11-05 17:20:21', '1', '2025-12-04 18:05:06'); INSERT INTO `base_resource_subject` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, '文学', '/statics/2025/12/04/文学_20251204180511A013.png', 0, '1', '2025-11-05 17:20:36', '1', '2025-12-04 18:05:12'); COMMIT; -- ---------------------------- -- Table structure for base_resource_tag -- ---------------------------- DROP TABLE IF EXISTS `base_resource_tag`; CREATE TABLE `base_resource_tag` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键', `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '标签名称', `icon_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '图标', `is_del` smallint DEFAULT '0' COMMENT '删除标识:0-未删除,1-已删除', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='资源标签'; -- ---------------------------- -- Records of base_resource_tag -- ---------------------------- BEGIN; INSERT INTO `base_resource_tag` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 1, '爱国主义教育', '/statics/2025/12/04/公共-红旗_20251204180907A025.png', 0, '1', '2025-11-04 19:21:51', '1', '2025-12-04 18:09:08'); INSERT INTO `base_resource_tag` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 1, '共同富裕', '/statics/2025/12/04/公共-红旗_20251204180913A026.png', 0, '1', '2025-11-05 12:18:19', '1', '2025-12-04 18:09:15'); INSERT INTO `base_resource_tag` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, '师德师风', '/statics/2025/12/04/公共-红旗_20251204180920A027.png', 0, '1', '2025-11-05 12:18:31', '1', '2025-12-04 18:09:21'); INSERT INTO `base_resource_tag` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 1, ' 立德树人', '/statics/2025/12/04/公共-红旗_20251204180926A028.png', 0, '1', '2025-11-05 12:18:42', '1', '2025-12-04 18:09:27'); INSERT INTO `base_resource_tag` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, ' 教育公平', '/statics/2025/12/04/公共-红旗_20251204180933A029.png', 0, '1', '2025-11-05 12:18:54', '1', '2025-12-04 18:09:34'); INSERT INTO `base_resource_tag` (`id`, `sch_id`, `name`, `icon_path`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, 1, ' 可持续发展', '/statics/2025/12/04/公共-红旗_20251204180938A030.png', 0, '1', '2025-11-05 12:19:13', '1', '2025-12-04 18:09:40'); COMMIT; -- ---------------------------- -- Table structure for base_resource_type -- ---------------------------- DROP TABLE IF EXISTS `base_resource_type`; CREATE TABLE `base_resource_type` ( `id` bigint NOT NULL AUTO_INCREMENT, `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '类型名称', `icon_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '图标', `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '描述', `type` smallint DEFAULT NULL COMMENT '类型:1-课件、2-视频、3-教案、4-图片、5-音频、6-链接、7-全景、8-3D模型、9-虚拟仿真展馆、10-图书', `is_del` smallint DEFAULT '0' COMMENT '删除标识:0-未删除,1-已删除', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='资源类型'; -- ---------------------------- -- Records of base_resource_type -- ---------------------------- BEGIN; INSERT INTO `base_resource_type` (`id`, `sch_id`, `name`, `icon_path`, `description`, `type`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 1, '课件', '/statics/2025/12/04/课件_20251204180531A014.png', NULL, 1, 0, '1', '2025-11-04 18:36:46', '1', '2025-12-04 18:05:33'); INSERT INTO `base_resource_type` (`id`, `sch_id`, `name`, `icon_path`, `description`, `type`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 1, '视频', '/statics/2025/12/04/视频_20251204180540A015.png', NULL, 2, 0, '1', '2025-11-04 19:06:21', '1', '2025-12-04 18:05:41'); INSERT INTO `base_resource_type` (`id`, `sch_id`, `name`, `icon_path`, `description`, `type`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, '教案', '/statics/2025/12/04/教案_20251204180547A016.png', NULL, 3, 0, '1', '2025-11-05 09:36:31', '1', '2025-12-04 18:05:48'); INSERT INTO `base_resource_type` (`id`, `sch_id`, `name`, `icon_path`, `description`, `type`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 1, '图片', '/statics/2025/12/04/图片_20251204180558A018.png', NULL, 4, 0, '1', '2025-11-05 09:36:46', '1', '2025-12-04 18:05:59'); INSERT INTO `base_resource_type` (`id`, `sch_id`, `name`, `icon_path`, `description`, `type`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, '音频', '/statics/2025/12/04/音乐_20251204180605A019.png', NULL, 5, 0, '1', '2025-11-05 09:46:08', '1', '2025-12-04 18:06:06'); INSERT INTO `base_resource_type` (`id`, `sch_id`, `name`, `icon_path`, `description`, `type`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, 1, ' 链接', '/statics/2025/12/04/链接_20251204180613A020.png', NULL, 6, 0, '1', '2025-11-05 09:46:23', '1', '2025-12-04 18:06:14'); INSERT INTO `base_resource_type` (`id`, `sch_id`, `name`, `icon_path`, `description`, `type`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 1, '全景', '/statics/2025/12/04/全景_20251204180619A021.png', NULL, 7, 0, '1', '2025-11-05 09:46:36', '1', '2025-12-04 18:06:20'); INSERT INTO `base_resource_type` (`id`, `sch_id`, `name`, `icon_path`, `description`, `type`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 1, '3D模型', '/statics/2025/12/04/3D模型_20251204180625A022.png', NULL, 8, 0, '1', '2025-11-05 09:46:53', '1', '2025-12-04 18:06:26'); INSERT INTO `base_resource_type` (`id`, `sch_id`, `name`, `icon_path`, `description`, `type`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (9, 1, '虚拟仿真展馆', '/statics/2025/12/04/虚拟仿真馆_20251204180631A023.png', NULL, 9, 0, '1', '2025-11-05 09:47:29', '1', '2025-12-04 18:06:33'); INSERT INTO `base_resource_type` (`id`, `sch_id`, `name`, `icon_path`, `description`, `type`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (10, 1, '图书', '/statics/2025/12/04/图书_20251204180639A024.png', NULL, 10, 0, '1', NULL, '1', '2025-12-04 18:06:41'); COMMIT; -- ---------------------------- -- Table structure for base_role -- ---------------------------- DROP TABLE IF EXISTS `base_role`; CREATE TABLE `base_role` ( `id` bigint NOT NULL AUTO_INCREMENT, `school_id` bigint DEFAULT NULL COMMENT '学校ID', `name` varchar(255) DEFAULT NULL COMMENT '角色名称', `permission` mediumtext COMMENT '权限', `use_count` int DEFAULT '1' COMMENT '使用数量', `is_use` int DEFAULT '1' COMMENT '是否启用', `is_del` int DEFAULT '0', `state` int DEFAULT NULL, `remark` varchar(255) DEFAULT NULL, `create_by` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统角色'; -- ---------------------------- -- Records of base_role -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for base_school -- ---------------------------- DROP TABLE IF EXISTS `base_school`; CREATE TABLE `base_school` ( `school_id` bigint NOT NULL AUTO_INCREMENT, `user_id` bigint DEFAULT NULL COMMENT 'sys_user表主键', `school_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '学校名称', `logo_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'LOGO', `apps` varchar(255) DEFAULT NULL COMMENT '授权应用', `status` int DEFAULT '1' COMMENT '状态:1-启用,0-禁用', `is_system_school` int unsigned DEFAULT '0' COMMENT '是否为系统院校:0-否,1-是', `remark` varchar(255) DEFAULT NULL, `is_del` int DEFAULT '0', `create_by` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`school_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='学校信息'; -- ---------------------------- -- Records of base_school -- ---------------------------- BEGIN; INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 128, '中硕思政研究院', '/statics/2025/11/01/u3469_20251101215200A004.png', '1,2,3,4,5,6,8', 1, 1, NULL, 0, 'admin', '2025-10-28 15:57:20', 'admin', '2025-12-16 17:56:12'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 100, '陕西研筑大学', '/statics/2025/10/28/360截图20250925165458_20251028185940A007.png', '1,2,3,4,5,6,8', 1, 0, NULL, 0, 'admin', '2025-10-28 15:57:14', 'admin', '2025-12-08 15:44:01'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (11, 106, '重庆文理学院', '/statics/2025/11/01/logo1_20251101153741A005.png', '1,8', 0, 0, NULL, 0, 'admin', '2025-11-01 15:37:50', 'admin', '2025-11-01 15:40:02'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (12, 108, '北京大学', '/statics/2025/11/01/281b57ff8759a5cc9bd0802be68e00e9_20251101220637A006.png', '1,2,3,4,5,6,8', 1, 0, NULL, 0, 'admin', '2025-11-01 22:07:36', 'admin', '2025-11-01 22:07:36'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (13, 109, '茅山道法学院', '/statics/2025/11/02/logo1_20251102135919A001.png', '1,2,8', 1, 0, NULL, 0, 'admin', '2025-11-02 14:00:28', 'admin', '2025-11-03 18:13:28'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (14, 120, 'test11', '/statics/2025/11/15/logo3_20251115112830A003.png', '1,8', 1, 0, NULL, 1, 'admin', '2025-11-15 11:15:54', 'admin', '2025-11-15 11:34:58'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (15, 121, 'tttt2', '/statics/2025/11/15/logo2_20251115115952A001.png', '1,2,3,8', 1, 0, NULL, 1, 'admin', '2025-11-15 11:35:49', 'admin', '2025-11-15 11:59:54'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (16, 122, 'tttt', '/statics/2025/11/15/logo4_20251115120009A002.png', '1,2,8', 1, 0, NULL, 1, 'admin', '2025-11-15 12:00:26', 'admin', '2025-11-15 12:00:26'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (17, 123, '陕西示范大学', '/statics/2025/11/20/17aa81e3ddcdf5cd47333f4a547b2979_20251031030306A255_20251120110843A001.png', '1,2,3,4,5,6,8', 1, 0, NULL, 0, 'admin', '2025-11-20 11:09:21', 'admin', '2025-12-08 17:10:39'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (21, 133, '中硕大学', '/statics/2025/11/27/123b2f4d-a2d3-4199-b7f4-a941af69ddcf_removalai_preview_20251127174938A001.png', '1,2,3,4,5,7,8', 0, 0, NULL, 0, 'admin', '2025-11-27 18:02:30', 'admin', '2025-12-09 10:31:08'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (23, 149, 'haha学院', '/statics/2026/01/19/3_20260119165626A001.png', '1,2,3,4,5,6,8', 1, 0, NULL, 0, 'admin', '2026-01-19 16:56:47', 'admin', '2026-01-19 16:56:47'); INSERT INTO `base_school` (`school_id`, `user_id`, `school_name`, `logo_path`, `apps`, `status`, `is_system_school`, `remark`, `is_del`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (24, 150, 'haha学院2', '/statics/2026/01/19/3_20260119165815A010.png', '1,8', 1, 0, NULL, 0, 'admin', '2026-01-19 16:58:26', 'admin', '2026-01-19 16:58:26'); COMMIT; -- ---------------------------- -- Table structure for base_student -- ---------------------------- DROP TABLE IF EXISTS `base_student`; CREATE TABLE `base_student` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'ID', `code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '学号', `sch_id` bigint NOT NULL COMMENT '学校ID', `dept_id` bigint NOT NULL COMMENT '班级ID', `dept_info` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '班级详情', `user_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '学生名称', `user_card_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '00' COMMENT '学生证件号码', `email` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '学生邮箱', `phone_number` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '手机号码', `address` varchar(255) DEFAULT NULL COMMENT '联系地址', `sex` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '0' COMMENT '学生性别(0男 1女 2未知)', `avatar` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '头像地址', `password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '密码', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '0' COMMENT '账号状态(0正常 1停用)', `del_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', `join_time` datetime DEFAULT NULL COMMENT '入学时间', `login_ip` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '登录地址', `login_date` datetime DEFAULT NULL COMMENT '最后登录时间', `pwd_update_date` datetime DEFAULT NULL COMMENT '密码最后更新时间', `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', PRIMARY KEY (`id`), KEY `index_code` (`code`), KEY `index_schId` (`sch_id`), KEY `index_deptId` (`dept_id`), KEY `index_userCodeId` (`user_card_id`), KEY `index_phonenumber` (`phone_number`) ) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='学生信息'; -- ---------------------------- -- Records of base_student -- ---------------------------- BEGIN; INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '201511211', 1, 9, '{\"deptNames\":\"马克思主义学院,思想政治教育2,2026级,思政2602班\",\"deptIds\":\"1,3,7,9\"}', '姜二琦', '00', '704976063@qq.com', '18189138536', '三桥', '0', '/statics/2026/01/19/file_20260119132516A008.jpeg', '$2a$10$qpgmblZBp8qArFAKsKVeI.mwqyOYhAPVRE2t/3VKvvihh9Uw1EOPG', '0', '0', '2025-11-05 00:00:00', '', NULL, NULL, 'admin::数据导入', '2025-11-07 11:33:51', 'admin', '2026-01-19 13:25:17', '测试'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '201511222', 1, 5, '{\"deptNames\":\"马克思主义学院,思想政治教育,2021级,思政2101班\",\"deptIds\":\"1,2,4,5\"}', '王武', '00', '12@qq.com', '13121312312', '12131', '0', NULL, '$2a$10$Ljb41szTsFOIrpyy4mHhD.nGM6DIrAdz.M.csQuDTWmCFrjp4fAG6', '0', '0', '2025-11-07 00:00:00', '', NULL, '2025-12-05 00:00:00', '', '2025-11-06 14:34:35', 'admin', '2025-12-18 17:09:55', '42345345'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '2041231', 1, 9, '{\"deptNames\":\"马克思主义学院,思想政治教育2,2026级,思政2602班\",\"deptIds\":\"1,3,7,9\"}', '龙小孟', '00', '1@qq.com', '18723122132', '2', '0', '/statics/2025/11/20/file_20251120121851A004.jpeg', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '2025-11-04 00:00:00', '', NULL, NULL, 'admin', '2025-11-06 16:28:09', 'admin', '2025-11-06 16:28:26', '3'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '201511215', 1, 9, '{\"deptNames\":\"马克思主义学院,思想政治教育2,2026级,思政2602班\",\"deptIds\":\"1,3,7,9\"}', '姜3琦', '00', '704976064@qq.com', '18189138537', '三桥', '0', '', '$2a$10$2tiglDjB7nEEkI7xTtfwtOphm63kiTPvDodYMIXcK7..szAJnT1GC', '0', '0', '2025-11-08 00:00:00', '', NULL, NULL, '15666666666::数据导入', '2025-12-23 16:29:17', '', NULL, '测试'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '201511022', 1, 9, '{\"deptNames\":\"马克思主义学院,思想政治教育2,2026级,思政2602班\",\"deptIds\":\"1,3,7,9\"}', '王哈一', '00', '704976063@qq.com', '18189138538', '三桥2', '0', '', '$2a$10$1wbAyJQ70TAgnEDyIZE.JOX5jFSRFJp7uMNFWTz23gNH0YZJgbpo.', '1', '0', '2025-11-08 00:00:00', '', NULL, NULL, 'admin::数据导入', '2025-11-07 11:33:52', '', NULL, '测试2'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '201511023', 1, 9, '{\"deptNames\":\"马克思主义学院,思想政治教育2,2026级,思政2602班\",\"deptIds\":\"1,3,7,9\"}', '王哈二', '00', '704976063@qq.com', '18189138539', '三桥3', '0', '', '$2a$10$rJeHsRTGfFMZeOr5eMwfI.Ah7vkPAx/dgg4jw8gKOowV2L896awJa', '1', '0', '2025-11-08 00:00:00', '', NULL, NULL, 'admin::数据导入', '2025-11-07 11:33:52', '', NULL, '测试3'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '1000112', 1, 8, '{\"deptNames\":\"马克思主义学院,思想政治教育2,2026级,思政2601班\",\"deptIds\":\"1,3,7,8\"}', '王大力', '00', 'lxm@sd.com', '18543434443', NULL, '0', '', '$2a$10$JHZ9RpRK2o0GPb5J57hhAOzfmC555p6PimdEcrrSlnyilhj59eHQe', '0', '0', '2025-11-07 00:00:00', '', NULL, NULL, 'admin', '2025-11-10 21:31:44', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, '2025-JSJ-0222', 2, 17, '{\"deptNames\":\"马克思主义学院,计算机应用,2025界,C2501\",\"deptIds\":\"14,15,16,17\"}', '王二小', '00', 'wex@aa.com', '13588888888', 'aaaaaaaaaaaa', '0', '/statics/2025/11/14/file_20251114152142A010.jpeg', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '2025-09-01 00:00:00', '', NULL, NULL, 'admin', '2025-11-14 15:21:43', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, '2025-JSJ-0233', 2, 18, '{\"deptNames\":\"马克思主义学院,计算机应用,2025界,C2502\",\"deptIds\":\"14,15,16,18\"}', '陈大壮', '00', '', '13677777777', NULL, '0', '', '$2a$10$TxiDlDnmo2mRViI2mNdkLe.XXgS61seFKnzR8XQuhgzQLd2EJIKbK', '0', '0', '2025-09-01 00:00:00', '', NULL, NULL, 'admin', '2025-11-14 15:22:53', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, 'c0001', 17, 25, '{\"deptNames\":\"信息工程学院,计算机专业,2024,求真8班\",\"deptIds\":\"22,23,24,25\"}', '刘备', '00', '13455665566@qq.com', '13455665566', '134556655661345566556613455665566', '0', '', '$2a$10$Pm7fHbYe9uqKAy.oaan2fuYW3mAam8P7Yzk1N3l/k/LZsKULMKpMe', '0', '0', '2025-09-01 00:00:00', '', NULL, NULL, '13488103555', '2025-11-20 11:29:46', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, 'p00003', 17, 26, '{\"deptNames\":\"信息工程学院,计算机专业,2024,尚美5班\",\"deptIds\":\"22,23,24,26\"}', '张菲', '00', '13312666666@qq.com', '13312666666', 'sdfs发射点士大夫撒旦是非法撒旦发射点', '0', '/statics/2025/11/20/file_20251120142400A005.jpeg', '$2a$10$WFMrrSXxGvonLvc2Fv8TvebTGOnMz2N4Efp0AZEtuOWU5lQ8ly0Xq', '0', '0', '2025-11-01 00:00:00', '', NULL, NULL, '13488103555', '2025-11-20 14:24:01', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, '10086', 17, 26, '{\"deptNames\":\"信息工程学院,计算机专业,2024,尚美5班\",\"deptIds\":\"22,23,24,26\"}', '关羽', '00', '13669666666@qq.com', '13669666666', '我的联系地址', '1', '', '$2a$10$g.WqM3TeUkEPW3Ig5BBXkOl8YLA2hjp6.4IuxzJemZdNXLYQJVWHe', '0', '0', '2025-11-01 00:00:00', '', NULL, NULL, '13488103555', '2025-11-26 09:25:11', '', NULL, '发士大夫十分士大夫胜多负少'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (13, '00034', 17, 26, '{\"deptNames\":\"信息工程学院,计算机专业,2024,尚美5班\",\"deptIds\":\"22,23,24,26\"}', '张小凡', '00', '13689898989@qq.com', '13689898989', NULL, '0', '/statics/2025/11/27/file_20251127151539A047.jpeg', '$2a$10$oE.aZpcHN9gh5bwU0bXxieX/JphUkto6OHZ/TDYCbEw5XjguadkPK', '0', '0', '2025-11-01 00:00:00', '', NULL, NULL, '13488103555', '2025-11-27 15:15:39', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (14, 'student001', 21, 30, '{\"deptNames\":\"马克思主义学院,思想政治与教育,2025界,2025思政一班\",\"deptIds\":\"27,28,29,30\"}', '马斯克', '00', '1213@qq.com', '15202903076', NULL, '0', '', '$2a$10$WdqAVNbYb4eyhXMDe6BgaeDEG6IXY38Dx/1/jazrrTQ7NS.DUJ12m', '0', '0', '2025-11-27 00:00:00', '', NULL, NULL, '15202903075', '2025-11-27 18:14:06', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (15, 'b0001', 17, 25, '{\"deptNames\":\"信息工程学院,计算机专业,2024,求真8班\",\"deptIds\":\"22,23,24,25\"}', '孙权', '00', '13889898989@qq.com', '13889898989', '23ddsdsc撒旦发射点', '0', '', '$2a$10$VnoK9WHoc9HI.gSOHEJKeeb39c8YiM2yhGbzwdKJMkTRkhy2ET2zq', '0', '0', '2025-12-01 00:00:00', '', NULL, NULL, '13488103555', '2025-12-05 16:52:09', '', NULL, '时十分士大夫似的是的'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (16, 'qwqwqw', 21, 30, '{\"deptNames\":\"马克思主义学院,思想政治与教育,2025界,2025思政一班\",\"deptIds\":\"27,28,29,30\"}', 'qwqwqw', '00', '12121212@qq.com', '13177777777', NULL, '0', '', '$2a$10$5sdvhPyC/2NYH.0Uf8K0qeCGwUn9PjUeaD4rGIJlcSltVwea9A/CC', '0', '0', '2025-12-05 16:54:48', '', NULL, NULL, 'admin', '2025-12-05 16:54:48', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (17, '12121212', 1, 5, '{\"deptNames\":\"马克思主义学院,思想政治教育,2021级,思政2101班\",\"deptIds\":\"1,2,4,5\"}', 'test111', '00', '', '15388888888', NULL, '0', '', '$2a$10$8zoomTcujcdx0EP6qCAjEe8ZsJ8sJuV6Ber.xwvuiiMgod4hswD4G', '0', '0', '2025-12-05 17:04:51', '', NULL, NULL, 'admin', '2025-12-05 17:04:51', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (18, 'p4334344', 17, 25, '{\"deptNames\":\"信息工程学院,计算机专业,2024,求真8班\",\"deptIds\":\"22,23,24,25\"}', '曹操', '00', '13778787878@qq.com', '13778787878', '23ddsdsc撒旦发射点', '0', '', '$2a$10$htr9NFChIatWpaSUV0k94ezyJfWsMM1JWAjwJ95UyMQdxzF7yy7aa', '0', '0', '2025-12-01 00:00:00', '', NULL, NULL, '13488103555', '2025-12-05 17:29:14', '', NULL, '士大夫胜多负少士大夫是32'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (19, 'sadfasdf', 2, 18, '{\"deptNames\":\"马克思主义学院,计算机应用,2025界,C2502\",\"deptIds\":\"14,15,16,18\"}', 'sadfsdaf', '00', '', '15533333333', NULL, '0', '', '$2a$10$78q6Mgjea0.9tBpFfo51kug0VttdtdPUIRIA8D.Iy104PAYb.0KrG', '0', '0', '2025-12-08 15:37:56', '', NULL, NULL, 'admin', '2025-12-08 15:37:56', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (20, 's1010', 1, 5, '{\"deptNames\":\"马克思主义学院,思想政治教育,2021级,思政2101班\",\"deptIds\":\"1,2,4,5\"}', '刘晓明', '00', '55@qq.com', '15100000000', '西安', '0', '', '$2a$10$y87BOWxKtTa7RJNMsXsEMOjjwfwuDmHMk6.TZynMNaaufjc6nRmJa', '0', '0', '2025-12-22 00:00:00', '', NULL, NULL, 'admin::数据导入', '2025-12-22 15:30:24', '', NULL, '无'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, 's1011', 1, 6, '{\"deptNames\":\"马克思主义学院,思想政治教育,2021级,思政2102班\",\"deptIds\":\"1,2,4,6\"}', '刘德华', '00', '55@qq.com', '16100000000', '西安', '0', '', '$2a$10$kUpoVmwn4ZHUh9R7GRvfKOEfZIurljYBebDPWhWPAIOhVC2HCw6p.', '1', '0', '2025-12-22 00:00:00', '', NULL, NULL, 'admin::数据导入', '2025-12-22 15:30:24', '', NULL, '无'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, 'ST998800', 1, 5, '{\"deptNames\":\"马克思主义学院,思想政治教育,2021级,思政2101班\",\"deptIds\":\"1,2,4,5\"}', 'test999', '00', '', '15377778888', '', '0', '', '$2a$10$CtHuOp0lHQfdTuLQihP9X.X46cdjF2rz10ySr4jweW5NHTBOxcA1C', '0', '2', '2025-12-30 00:00:00', '', NULL, NULL, 'admin::数据导入', '2026-01-14 11:24:16', '', NULL, ''); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (23, 'st888888', 1, 31, '{\"deptNames\":\"test2学院\",\"deptIds\":\"31\"}', 'st888', '00', '', '13811223344', NULL, '0', '/statics/2026/01/14/file_20260114113709A002.jpeg', '$2a$10$Royxow.Vg29mm4uNeuxA6Ogyq8LRMBsTpgct6z0.lGDv93uOkfUo.', '0', '0', '2026-01-15 00:00:00', '', NULL, NULL, 'admin', '2026-01-14 11:37:10', '', NULL, NULL); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (24, 'St009999', 2, 18, '{\"deptNames\":\"马克思主义学院,计算机应用,2025界,C2502\",\"deptIds\":\"14,15,16,18\"}', 'ST00999', '00', '', '15329928811', '', '0', '', '$2a$10$BWa44WdIvv1iRglmgQQtMeCPXPyF1GSXgC.vbrjE1.LpjgEXun1bS', '0', '0', '2025-12-28 00:00:00', '', NULL, NULL, '13388880001::数据导入', '2026-01-19 11:46:05', '', NULL, ''); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (25, 'St009988', 2, 18, '{\"deptNames\":\"马克思主义学院,计算机应用,2025界,C2502\",\"deptIds\":\"14,15,16,18\"}', 'ST00988', '00', '', '15329928812', '', '0', '', '$2a$10$QFueyI0ckJC.WilY63ua5OeTIjli5sto1onNDBaNpblJemMJyIsTu', '0', '0', '2025-12-28 00:00:00', '', NULL, NULL, '13388880001::数据导入', '2026-01-19 11:51:05', '', NULL, ''); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (27, 'b00099', 17, 25, '{\"deptNames\":\"信息工程学院,计算机专业,2024,求真8班\",\"deptIds\":\"22,23,24,25\"}', '夏侯顿', '00', '13889898989@qq.com', '13889898000', '23ddsdsc撒旦发射点', '0', '', '$2a$10$.jF6tZlbHYWFh17tZgfpq.HizYy3biD2UU1oAOIfwusi6iINOHiq6', '0', '2', '2025-12-31 00:00:00', '', NULL, NULL, '13488103555::数据导入', '2026-01-19 16:20:37', '13488103555::数据导入', '2026-01-19 16:42:54', '时十分士大夫似的是的'); INSERT INTO `base_student` (`id`, `code`, `sch_id`, `dept_id`, `dept_info`, `user_name`, `user_card_id`, `email`, `phone_number`, `address`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (28, 'b000123', 17, 36, '{\"deptNames\":\"信息工程学院,ccc,Test2026,C202601\",\"deptIds\":\"22,34,35,36\"}', '孙权22', '00', '13889898989@qq.com', '13889898900', '23ddsdsc撒旦发射点', '0', '', '$2a$10$Sw2zmRxi80QZGEgw6itt8uKE9QaUZmzB.NSdFQn9MNp3b4WmI4DIW', '0', '0', '2025-12-02 00:00:00', '', NULL, NULL, '13488103555::数据导入', '2026-01-19 17:40:57', '', NULL, '时十分士大夫似的是的'); COMMIT; -- ---------------------------- -- Table structure for base_sys_log -- ---------------------------- DROP TABLE IF EXISTS `base_sys_log`; CREATE TABLE `base_sys_log` ( `log_id` bigint NOT NULL AUTO_INCREMENT COMMENT '日志ID', `sch_id` bigint DEFAULT NULL COMMENT '院校ID', `log_time` datetime DEFAULT NULL COMMENT '日志时间', `log_level` smallint DEFAULT NULL COMMENT '日志级别:1-error,2-warning', `module` varchar(255) DEFAULT NULL COMMENT '模块名称', `user_name` varchar(255) DEFAULT NULL COMMENT '操作用户名称', `user_id` smallint DEFAULT NULL COMMENT '操作用户ID', `user_role` varchar(255) DEFAULT NULL COMMENT '用户角色名称', `content` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '日志内容', `status` smallint DEFAULT '0' COMMENT '处理状态:0-未处理,1-已处理', `error_stack` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '错误堆栈', `ip` varchar(255) DEFAULT NULL COMMENT 'IP地址', `ip_region` varchar(255) DEFAULT NULL COMMENT 'IP属地', `remark` varchar(255) DEFAULT NULL COMMENT '处理备注', `processing_record` varchar(255) DEFAULT NULL COMMENT '处理记录', `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`log_id`) ) ENGINE=InnoDB AUTO_INCREMENT=192 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统日志'; -- ---------------------------- -- Records of base_sys_log -- ---------------------------- BEGIN; INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 17, '2025-12-17 11:59:11', 1, '未知', '13444343434', 131, '教师', '请求地址\'/academic/list\',权限码校验失败\'system:academic:list\'', 0, 'com.study.common.core.exception.auth.NotPermissionException: system:academic:list\n at com.study.common.security.auth.AuthLogic.checkPermiAnd(AuthLogic.java:172)\n at com.study.common.security.auth.AuthLogic.checkPermi(AuthLogic.java:152)\n at com.study.common.security.auth.AuthUtil.checkPermi(AuthUtil.java:156)\n at com.study.common.security.aspect.PreAuthorizeAspect.checkMethodAnnotation(PreAuthorizeAspect.java:86)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:58)\n at sun.reflect.GeneratedMethodAccessor195.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.setting.controller.BaseAcademicController$$EnhancerBySpringCGLIB$$fac37c37.list()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFil...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 11:59:11', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 17, '2025-12-17 11:59:43', 1, '未知', '13444343434', 131, '教师', '请求地址\'/academic/list\',权限码校验失败\'system:academic:list\'', 0, 'com.study.common.core.exception.auth.NotPermissionException: system:academic:list\n at com.study.common.security.auth.AuthLogic.checkPermiAnd(AuthLogic.java:172)\n at com.study.common.security.auth.AuthLogic.checkPermi(AuthLogic.java:152)\n at com.study.common.security.auth.AuthUtil.checkPermi(AuthUtil.java:156)\n at com.study.common.security.aspect.PreAuthorizeAspect.checkMethodAnnotation(PreAuthorizeAspect.java:86)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:58)\n at sun.reflect.GeneratedMethodAccessor195.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.setting.controller.BaseAcademicController$$EnhancerBySpringCGLIB$$fac37c37.list()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFil...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 11:59:43', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, '2025-12-17 13:04:51', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2/2/3\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$949d011c.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:04:51', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 17, '2025-12-17 13:04:51', 1, '信息系统', '龙小孟', 123, '院校管理员', '请求地址\'/messageRel/unreadCount2/1/123\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$949d011c.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '13488103555', '2025-12-17 13:04:51', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, '2025-12-17 13:04:56', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:04:56', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, 17, '2025-12-17 13:04:56', 2, '信息系统', '龙小孟', 123, '院校管理员', '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '13488103555', '2025-12-17 13:04:56', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 1, '2025-12-17 13:05:01', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:01', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 17, '2025-12-17 13:05:01', 2, '信息系统', '龙小孟', 123, '院校管理员', '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '13488103555', '2025-12-17 13:05:01', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (9, 1, '2025-12-17 13:05:06', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:06', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (10, 17, '2025-12-17 13:05:06', 2, '信息系统', '龙小孟', 123, '院校管理员', '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '13488103555', '2025-12-17 13:05:06', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (11, 1, '2025-12-17 13:05:11', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:11', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (12, 17, '2025-12-17 13:05:11', 2, '信息系统', '龙小孟', 123, '院校管理员', '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '13488103555', '2025-12-17 13:05:11', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (13, 1, '2025-12-17 13:05:16', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:16', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (14, 17, '2025-12-17 13:05:16', 2, '信息系统', '龙小孟', 123, '院校管理员', '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '13488103555', '2025-12-17 13:05:16', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (15, 17, '2025-12-17 13:05:21', 2, '信息系统', '龙小孟', 123, '院校管理员', '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '13488103555', '2025-12-17 13:05:21', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (16, 1, '2025-12-17 13:05:21', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:21', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (17, 1, '2025-12-17 13:05:26', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:26', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (18, 1, '2025-12-17 13:05:31', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:31', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (19, 1, '2025-12-17 13:05:36', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:36', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (20, 1, '2025-12-17 13:05:41', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:41', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (21, 1, '2025-12-17 13:05:46', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:46', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (22, 1, '2025-12-17 13:05:51', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:51', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (23, 1, '2025-12-17 13:05:56', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:05:56', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (24, 1, '2025-12-17 13:06:01', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:01', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (25, 1, '2025-12-17 13:06:06', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:06', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (26, 1, '2025-12-17 13:06:11', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:11', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (27, 17, '2025-12-17 13:06:11', 2, '信息系统', '龙小孟', 123, '院校管理员', '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '13488103555', '2025-12-17 13:06:11', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (28, 1, '2025-12-17 13:06:15', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2/2/3\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$949d011c.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:15', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (29, 1, '2025-12-17 13:06:20', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:20', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (30, 1, '2025-12-17 13:06:25', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:25', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (31, 1, '2025-12-17 13:06:30', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:30', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (32, 1, '2025-12-17 13:06:35', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:35', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (33, 1, '2025-12-17 13:06:40', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:40', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (34, 1, '2025-12-17 13:06:45', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:45', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (35, 1, '2025-12-17 13:06:50', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:50', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (36, 1, '2025-12-17 13:06:55', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:06:55', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (37, 1, '2025-12-17 13:07:00', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:07:00', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (38, 1, '2025-12-17 13:09:33', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2/2/3\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$dc23acae.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:09:33', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (39, 1, '2025-12-17 13:10:04', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2/2/3\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$dc23acae.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:04', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (40, 1, '2025-12-17 13:10:10', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:10', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (41, 1, '2025-12-17 13:10:15', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:15', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (42, 1, '2025-12-17 13:10:20', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:20', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (43, 1, '2025-12-17 13:10:25', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:25', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (44, 1, '2025-12-17 13:10:30', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:30', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (45, 1, '2025-12-17 13:10:35', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:35', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (46, 1, '2025-12-17 13:10:40', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:40', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (47, 1, '2025-12-17 13:10:45', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:45', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (48, 1, '2025-12-17 13:10:50', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:50', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (49, 1, '2025-12-17 13:10:55', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:10:55', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (50, 1, '2025-12-17 13:11:00', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:11:00', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (51, 1, '2025-12-17 13:11:05', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:11:05', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (52, 1, '2025-12-17 13:11:10', 2, '信息系统', '龙小孟', 3, NULL, '请求参数类型不匹配,参数[userId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"undefined\"\r\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\r\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\r\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\r\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\r\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\r\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\r\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\r\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\r\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\r\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\r\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\r\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\r\n at org.a...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:11:10', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (53, 1, '2025-12-17 13:12:45', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:12:45', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (54, 1, '2025-12-17 13:12:47', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:12:47', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (55, 1, '2025-12-17 13:12:49', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:12:49', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (56, 1, '2025-12-17 13:12:54', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:12:54', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (57, 1, '2025-12-17 13:12:59', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:12:59', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (58, 1, '2025-12-17 13:13:04', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:04', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (59, 1, '2025-12-17 13:13:09', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:09', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (60, 1, '2025-12-17 13:13:14', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:14', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (61, 1, '2025-12-17 13:13:19', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:19', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (62, 1, '2025-12-17 13:13:24', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:24', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (63, 1, '2025-12-17 13:13:29', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:29', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (64, 1, '2025-12-17 13:13:34', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:34', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (65, 1, '2025-12-17 13:13:39', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:39', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (66, 1, '2025-12-17 13:13:44', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:44', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (67, 1, '2025-12-17 13:13:49', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:49', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (68, 1, '2025-12-17 13:13:54', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.Ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:54', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (69, 1, '2025-12-17 13:13:59', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:13:59', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (70, 1, '2025-12-17 13:14:04', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:04', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (71, 1, '2025-12-17 13:14:09', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:09', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (72, 1, '2025-12-17 13:14:14', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:14', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (73, 1, '2025-12-17 13:14:19', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:19', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (74, 1, '2025-12-17 13:14:24', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:24', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (75, 1, '2025-12-17 13:14:26', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:26', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (76, 1, '2025-12-17 13:14:29', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:29', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (77, 1, '2025-12-17 13:14:34', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:34', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (78, 1, '2025-12-17 13:14:39', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:39', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (79, 1, '2025-12-17 13:14:45', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:45', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (80, 1, '2025-12-17 13:14:50', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:50', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (81, 1, '2025-12-17 13:14:54', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:54', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (82, 1, '2025-12-17 13:14:59', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:14:59', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (83, 1, '2025-12-17 13:15:05', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:15:05', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (84, 1, '2025-12-17 13:15:10', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:15:10', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (85, 1, '2025-12-17 13:15:15', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:15:15', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (86, 1, '2025-12-17 13:15:20', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:15:20', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (87, 1, '2025-12-17 13:15:25', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:15:25', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (88, 1, '2025-12-17 13:15:30', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:15:30', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (89, 1, '2025-12-17 13:15:35', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:15:35', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (90, 1, '2025-12-17 13:15:40', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:15:40', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (91, 1, '2025-12-17 13:15:45', 1, '信息系统', '龙小孟', 3, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\r\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\r\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\r\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c5c1880b.countUnreadMessage2()\r\n at sun.reflect.GeneratedMethodAccessor35.invoke(Unknown Source)\r\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.lang.reflect.Method.invoke(Method.java:498)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\r\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\r\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\r\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\r\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\r\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\r\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\r\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\r\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\r\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\r\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\r\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\r\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\r\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\r\n at org.ap...', '127.0.0.1', NULL, NULL, NULL, '龙小孟', '2025-12-17 13:15:45', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (92, 17, '2025-12-17 14:06:05', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:05', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (93, 1, '2025-12-17 14:06:05', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:05', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (94, 17, '2025-12-17 14:06:05', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:05', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (95, 17, '2025-12-17 14:06:06', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:06', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (96, 17, '2025-12-17 14:06:06', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:06', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (97, 1, '2025-12-17 14:06:06', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:06', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (98, 17, '2025-12-17 14:06:09', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:09', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (99, 17, '2025-12-17 14:06:10', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:10', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (100, 1, '2025-12-17 14:06:10', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:10', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (101, 17, '2025-12-17 14:06:14', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:14', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (102, 17, '2025-12-17 14:06:15', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:15', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (103, 1, '2025-12-17 14:06:15', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:15', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (104, 17, '2025-12-17 14:06:19', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:19', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (105, 17, '2025-12-17 14:06:20', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:20', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (106, 1, '2025-12-17 14:06:21', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:21', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (107, 17, '2025-12-17 14:06:24', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:24', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, 17, '2025-12-17 14:06:25', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:25', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, 1, '2025-12-17 14:06:25', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:25', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (110, 17, '2025-12-17 14:06:29', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:29', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (111, 1, '2025-12-17 14:06:30', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:30', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (112, 17, '2025-12-17 14:06:34', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:34', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (113, 1, '2025-12-17 14:06:36', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:36', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (114, 17, '2025-12-17 14:06:39', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:39', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (115, 1, '2025-12-17 14:06:40', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:40', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (116, 17, '2025-12-17 14:06:44', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:44', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (117, 1, '2025-12-17 14:06:45', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:45', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (118, 17, '2025-12-17 14:06:49', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:49', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (119, 1, '2025-12-17 14:06:50', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:50', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (120, 1, '2025-12-17 14:06:52', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:52', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (121, 17, '2025-12-17 14:06:54', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:54', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (122, 1, '2025-12-17 14:06:57', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:06:57', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (123, 17, '2025-12-17 14:06:59', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:06:59', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (124, 1, '2025-12-17 14:07:02', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:07:02', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (125, 17, '2025-12-17 14:07:04', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:07:04', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (126, 17, '2025-12-17 14:07:04', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:07:04', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (127, 1, '2025-12-17 14:07:07', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:07:07', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (128, 17, '2025-12-17 14:07:09', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:07:09', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (129, 1, '2025-12-17 14:07:12', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:07:12', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (130, 17, '2025-12-17 14:07:14', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:07:14', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (131, 1, '2025-12-17 14:07:17', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:07:17', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (132, 17, '2025-12-17 14:07:19', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:07:19', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (133, 1, '2025-12-17 14:07:22', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:07:22', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (134, 17, '2025-12-17 14:07:24', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:07:24', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (135, 1, '2025-12-17 14:07:27', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:07:27', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (136, 17, '2025-12-17 14:07:29', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:07:29', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (137, 1, '2025-12-17 14:07:32', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:07:32', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (138, 17, '2025-12-17 14:07:34', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:07:34', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (139, 1, '2025-12-17 14:07:37', 2, '信息系统', '超级管理员', 1, '超级管理员', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-17 14:07:37', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (140, 17, '2025-12-17 14:07:39', 2, '信息系统', '李敢', 131, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'', 1, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"unreadCount2\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 14:07:39', NULL, '2025-12-17 14:30:06'); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (141, 17, '2025-12-17 16:05:01', 1, '系统配置', '李敢', 131, '教师', '请求地址\'/apps/list\',权限码校验失败\'setting:apps:list\'', 0, 'com.study.common.core.exception.auth.NotPermissionException: setting:apps:list\n at com.study.common.security.auth.AuthLogic.checkPermiAnd(AuthLogic.java:172)\n at com.study.common.security.auth.AuthLogic.checkPermi(AuthLogic.java:152)\n at com.study.common.security.auth.AuthUtil.checkPermi(AuthUtil.java:156)\n at com.study.common.security.aspect.PreAuthorizeAspect.checkMethodAnnotation(PreAuthorizeAspect.java:86)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:58)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.setting.controller.BaseAppController$$EnhancerBySpringCGLIB$$90d28faa.list()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.jav...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 16:05:01', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (142, 17, '2025-12-17 16:51:12', 1, '系统配置', '李敢', 131, '教师', '请求地址\'/apps/list\',权限码校验失败\'setting:apps:list\'', 0, 'com.study.common.core.exception.auth.NotPermissionException: setting:apps:list\n at com.study.common.security.auth.AuthLogic.checkPermiAnd(AuthLogic.java:172)\n at com.study.common.security.auth.AuthLogic.checkPermi(AuthLogic.java:152)\n at com.study.common.security.auth.AuthUtil.checkPermi(AuthUtil.java:156)\n at com.study.common.security.aspect.PreAuthorizeAspect.checkMethodAnnotation(PreAuthorizeAspect.java:86)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:58)\n at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.setting.controller.BaseAppController$$EnhancerBySpringCGLIB$$90d28faa.list()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 16:51:12', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (143, 17, '2025-12-17 16:51:22', 1, '系统配置', '李敢', 131, '教师', '请求地址\'/apps/list\',权限码校验失败\'setting:apps:list\'', 0, 'com.study.common.core.exception.auth.NotPermissionException: setting:apps:list\n at com.study.common.security.auth.AuthLogic.checkPermiAnd(AuthLogic.java:172)\n at com.study.common.security.auth.AuthLogic.checkPermi(AuthLogic.java:152)\n at com.study.common.security.auth.AuthUtil.checkPermi(AuthUtil.java:156)\n at com.study.common.security.aspect.PreAuthorizeAspect.checkMethodAnnotation(PreAuthorizeAspect.java:86)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:58)\n at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.setting.controller.BaseAppController$$EnhancerBySpringCGLIB$$90d28faa.list()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 16:51:22', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (144, 1, '2025-12-17 18:50:46', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 386,135 milliseconds ago. The last packet sent successfully to the server was 386,162 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### Th...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 386,135 milliseconds ago. The last packet sent successfully to the server was 386,162 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 386,135 milliseconds ago. The last packet sent successfully to the server was 386,162 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 386,135 milliseconds ago. The last packet sent successfully to the server was 386,162 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 386,135 milliseconds ago. The last packet sent successfully to the server was 386,162 milliseconds ago.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at sun.reflect.GeneratedMethodAccessor156.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(Dispatc...', '127.0.0.1', NULL, NULL, NULL, '王武', '2025-12-17 18:50:46', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (145, 17, '2025-12-17 18:50:46', 1, '信息系统', '李敢', 131, '教师', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 378,400 milliseconds ago. The last packet sent successfully to the server was 378,429 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### Th...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 378,400 milliseconds ago. The last packet sent successfully to the server was 378,429 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 378,400 milliseconds ago. The last packet sent successfully to the server was 378,429 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 378,400 milliseconds ago. The last packet sent successfully to the server was 378,429 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 378,400 milliseconds ago. The last packet sent successfully to the server was 378,429 milliseconds ago.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at sun.reflect.GeneratedMethodAccessor156.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(Dispatc...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 18:50:46', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (146, 1, '2025-12-17 21:53:45', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,028 milliseconds ago. The last packet sent successfully to the server was 904,055 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,028 milliseconds ago. The last packet sent successfully to the server was 904,055 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,028 milliseconds ago. The last packet sent successfully to the server was 904,055 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 904,028 milliseconds ago. The last packet sent successfully to the server was 904,055 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,028 milliseconds ago. The last packet sent successfully to the server was 904,055 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '王武', '2025-12-17 21:53:45', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (147, 17, '2025-12-17 21:53:45', 1, '信息系统', '李敢', 131, '教师', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,794 milliseconds ago. The last packet sent successfully to the server was 903,823 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,794 milliseconds ago. The last packet sent successfully to the server was 903,823 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,794 milliseconds ago. The last packet sent successfully to the server was 903,823 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,794 milliseconds ago. The last packet sent successfully to the server was 903,823 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,794 milliseconds ago. The last packet sent successfully to the server was 903,823 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 21:53:45', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (148, 1, '2025-12-17 22:26:12', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,039 milliseconds ago. The last packet sent successfully to the server was 904,067 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,039 milliseconds ago. The last packet sent successfully to the server was 904,067 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,039 milliseconds ago. The last packet sent successfully to the server was 904,067 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 904,039 milliseconds ago. The last packet sent successfully to the server was 904,067 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,039 milliseconds ago. The last packet sent successfully to the server was 904,067 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '王武', '2025-12-17 22:26:12', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (149, 17, '2025-12-17 22:26:12', 1, '信息系统', '李敢', 131, '教师', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,842 milliseconds ago. The last packet sent successfully to the server was 903,871 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,842 milliseconds ago. The last packet sent successfully to the server was 903,871 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,842 milliseconds ago. The last packet sent successfully to the server was 903,871 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,842 milliseconds ago. The last packet sent successfully to the server was 903,871 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,842 milliseconds ago. The last packet sent successfully to the server was 903,871 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 22:26:12', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (150, 1, '2025-12-17 22:59:12', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,101 milliseconds ago. The last packet sent successfully to the server was 904,131 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,101 milliseconds ago. The last packet sent successfully to the server was 904,131 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,101 milliseconds ago. The last packet sent successfully to the server was 904,131 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 904,101 milliseconds ago. The last packet sent successfully to the server was 904,131 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,101 milliseconds ago. The last packet sent successfully to the server was 904,131 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '王武', '2025-12-17 22:59:12', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (151, 17, '2025-12-17 22:59:12', 1, '信息系统', '李敢', 131, '教师', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,368 milliseconds ago. The last packet sent successfully to the server was 904,396 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,368 milliseconds ago. The last packet sent successfully to the server was 904,396 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,368 milliseconds ago. The last packet sent successfully to the server was 904,396 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 904,368 milliseconds ago. The last packet sent successfully to the server was 904,396 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 904,368 milliseconds ago. The last packet sent successfully to the server was 904,396 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-17 22:59:12', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (152, 17, '2025-12-18 00:21:33', 1, '信息系统', '李敢', 131, '教师', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,197 milliseconds ago. The last packet sent successfully to the server was 903,225 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,197 milliseconds ago. The last packet sent successfully to the server was 903,225 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,197 milliseconds ago. The last packet sent successfully to the server was 903,225 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,197 milliseconds ago. The last packet sent successfully to the server was 903,225 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,197 milliseconds ago. The last packet sent successfully to the server was 903,225 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-18 00:21:33', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (153, 1, '2025-12-18 00:21:33', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,446 milliseconds ago. The last packet sent successfully to the server was 903,474 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,446 milliseconds ago. The last packet sent successfully to the server was 903,474 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,446 milliseconds ago. The last packet sent successfully to the server was 903,474 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,446 milliseconds ago. The last packet sent successfully to the server was 903,474 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,446 milliseconds ago. The last packet sent successfully to the server was 903,474 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '王武', '2025-12-18 00:21:33', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (154, 17, '2025-12-18 02:00:21', 1, '信息系统', '李敢', 131, '教师', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,505 milliseconds ago. The last packet sent successfully to the server was 903,563 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,505 milliseconds ago. The last packet sent successfully to the server was 903,563 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,505 milliseconds ago. The last packet sent successfully to the server was 903,563 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,505 milliseconds ago. The last packet sent successfully to the server was 903,563 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,505 milliseconds ago. The last packet sent successfully to the server was 903,563 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-18 02:00:21', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (155, 17, '2025-12-18 05:39:41', 1, '信息系统', '李敢', 131, '教师', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,923 milliseconds ago. The last packet sent successfully to the server was 903,952 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,923 milliseconds ago. The last packet sent successfully to the server was 903,952 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,923 milliseconds ago. The last packet sent successfully to the server was 903,952 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,923 milliseconds ago. The last packet sent successfully to the server was 903,952 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,923 milliseconds ago. The last packet sent successfully to the server was 903,952 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-18 05:39:41', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (156, 1, '2025-12-18 05:39:41', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,793 milliseconds ago. The last packet sent successfully to the server was 903,848 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,793 milliseconds ago. The last packet sent successfully to the server was 903,848 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,793 milliseconds ago. The last packet sent successfully to the server was 903,848 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,793 milliseconds ago. The last packet sent successfully to the server was 903,848 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,793 milliseconds ago. The last packet sent successfully to the server was 903,848 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '王武', '2025-12-18 05:39:41', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (157, 1, '2025-12-18 06:46:10', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 916,165 milliseconds ago. The last packet sent successfully to the server was 916,191 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 916,165 milliseconds ago. The last packet sent successfully to the server was 916,191 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 916,165 milliseconds ago. The last packet sent successfully to the server was 916,191 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 916,165 milliseconds ago. The last packet sent successfully to the server was 916,191 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 916,165 milliseconds ago. The last packet sent successfully to the server was 916,191 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '王武', '2025-12-18 06:46:10', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (158, 17, '2025-12-18 06:46:10', 1, '信息系统', '李敢', 131, '教师', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,427 milliseconds ago. The last packet sent successfully to the server was 903,458 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,427 milliseconds ago. The last packet sent successfully to the server was 903,458 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,427 milliseconds ago. The last packet sent successfully to the server was 903,458 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,427 milliseconds ago. The last packet sent successfully to the server was 903,458 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,427 milliseconds ago. The last packet sent successfully to the server was 903,458 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-18 06:46:10', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (159, 1, '2025-12-18 07:02:56', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,477 milliseconds ago. The last packet sent successfully to the server was 903,504 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,477 milliseconds ago. The last packet sent successfully to the server was 903,504 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,477 milliseconds ago. The last packet sent successfully to the server was 903,504 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,477 milliseconds ago. The last packet sent successfully to the server was 903,504 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,477 milliseconds ago. The last packet sent successfully to the server was 903,504 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '王武', '2025-12-18 07:02:56', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (160, 17, '2025-12-18 07:02:56', 1, '信息系统', '李敢', 131, '教师', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,115 milliseconds ago. The last packet sent successfully to the server was 903,143 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,115 milliseconds ago. The last packet sent successfully to the server was 903,143 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,115 milliseconds ago. The last packet sent successfully to the server was 903,143 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,115 milliseconds ago. The last packet sent successfully to the server was 903,143 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,115 milliseconds ago. The last packet sent successfully to the server was 903,143 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-18 07:02:56', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (161, 17, '2025-12-18 07:19:10', 1, '信息系统', '李敢', 131, '教师', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 921,549 milliseconds ago. The last packet sent successfully to the server was 921,576 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 921,549 milliseconds ago. The last packet sent successfully to the server was 921,576 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 921,549 milliseconds ago. The last packet sent successfully to the server was 921,576 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 921,549 milliseconds ago. The last packet sent successfully to the server was 921,576 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 921,549 milliseconds ago. The last packet sent successfully to the server was 921,576 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '13444343434', '2025-12-18 07:19:10', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (162, 1, '2025-12-18 07:19:10', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,496 milliseconds ago. The last packet sent successfully to the server was 903,525 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,496 milliseconds ago. The last packet sent successfully to the server was 903,525 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,496 milliseconds ago. The last packet sent successfully to the server was 903,525 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n; The last packet successfully received from the server was 903,496 milliseconds ago. The last packet sent successfully to the server was 903,525 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: The last packet successfully received from the server was 903,496 milliseconds ago. The last packet sent successfully to the server was 903,525 milliseconds ago. is longer than the server configured value of \'wait_timeout\'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property \'autoReconnect=true\' to avoid this problem.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$c01e6543.countUnreadMessage2()\n at su...', '127.0.0.1', NULL, NULL, NULL, '王武', '2025-12-18 07:19:10', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (163, 1, '2025-12-18 12:25:50', 1, '信息系统', '超级管理员', 1, '超级管理员', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 60,005 milliseconds ago. The last packet sent successfully to the server was 60,030 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 60,005 milliseconds ago. The last packet sent successfully to the server was 60,030 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 60,005 milliseconds ago. The last packet sent successfully to the server was 60,030 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 60,005 milliseconds ago. The last packet sent successfully to the server was 60,030 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 60,005 milliseconds ago. The last packet sent successfully to the server was 60,030 milliseconds ago.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$4a0a5b38.countUnreadMessage2()\n at sun.reflect.GeneratedMethodAccessor158.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServl...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-18 12:25:50', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (164, 1, '2025-12-18 18:29:14', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/list\',发生系统异常\'ServletOutputStream failed to write: java.io.IOException: Broken pipe\'', 0, 'org.springframework.web.context.request.async.AsyncRequestNotUsableException: ServletOutputStream failed to write: java.io.IOException: Broken pipe\n at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleHttpServletResponse.handleIOException(StandardServletAsyncWebRequest.java:320)\n at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.write(StandardServletAsyncWebRequest.java:378)\n at org.springframework.util.StreamUtils$NonClosingOutputStream.write(StreamUtils.java:287)\n at com.fasterxml.jackson.core.json.UTF8JsonGenerator._flushBuffer(UTF8JsonGenerator.java:2171)\n at com.fasterxml.jackson.core.json.UTF8JsonGenerator.flush(UTF8JsonGenerator.java:1184)\n at com.fasterxml.jackson.databind.ObjectWriter.writeValue(ObjectWriter.java:1009)\n at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.writeInternal(AbstractJackson2HttpMessageConverter.java:456)\n at org.springframework.http.converter.AbstractGenericHttpMessageConverter.write(AbstractGenericHttpMessageConverter.java:104)\n at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:290)\n at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:183)\n at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:78)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:135)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalin...', '127.0.0.1', NULL, NULL, NULL, '王武', '2025-12-18 18:29:14', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (165, 1, '2025-12-22 15:08:10', 1, '用户系统', '超级管理员', 1, '超级管理员', '很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 12100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
2、账号 13100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', 0, 'com.study.common.core.exception.ServiceException: 很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 12100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
2、账号 13100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2\n at com.study.system.service.impl.SysUserServiceImpl.importUser(SysUserServiceImpl.java:680)\n at com.study.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$a76938e5.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$1ca1062b.importUser()\n at com.study.system.controller.SysUserController.importData(SysUserController.java:129)\n at com.study.system.controller.SysUserController$$FastClassBySpringCGLIB$$e7ab198f.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\n at sun.reflect.GeneratedMethodAccessor371.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.controller.SysUserController$$EnhancerBySpringCGLIB$$e19d80fa.importData()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at o...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-22 15:08:10', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (166, 1, '2025-12-22 15:10:34', 1, '用户系统', '超级管理员', 1, '超级管理员', '很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 12100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
2、账号 13100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', 0, 'com.study.common.core.exception.ServiceException: 很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 12100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
2、账号 13100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2\n at com.study.system.service.impl.SysUserServiceImpl.importUser(SysUserServiceImpl.java:680)\n at com.study.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$a76938e5.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$1ca1062b.importUser()\n at com.study.system.controller.SysUserController.importData(SysUserController.java:129)\n at com.study.system.controller.SysUserController$$FastClassBySpringCGLIB$$e7ab198f.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\n at sun.reflect.GeneratedMethodAccessor371.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.controller.SysUserController$$EnhancerBySpringCGLIB$$e19d80fa.importData()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at o...', '0:0:0:0:0:0:0:1%0', NULL, NULL, NULL, 'admin', '2025-12-22 15:10:34', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (167, 1, '2025-12-22 15:13:46', 1, '用户系统', '超级管理员', 1, '超级管理员', '请求地址\'/user/export\',发生系统异常\'Handler dispatch failed; nested exception is java.lang.OutOfMemoryError: Metaspace\'', 0, 'org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.OutOfMemoryError: Metaspace\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1087)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:555)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1189)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:658)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)\n at java.lang.Thread.run(Thread.java:750)\nCaused by: java.lang.OutOfMemoryError: Metaspace\n', '0:0:0:0:0:0:0:1%0', NULL, NULL, NULL, 'admin', '2025-12-22 15:13:46', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (168, 1, '2025-12-22 15:14:12', 1, '用户系统', '超级管理员', 1, '超级管理员', '请求地址\'/user/export\',发生系统异常\'Handler dispatch failed; nested exception is java.lang.OutOfMemoryError: Metaspace\'', 0, 'org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.OutOfMemoryError: Metaspace\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1087)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:555)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1189)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:658)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)\n at java.lang.Thread.run(Thread.java:750)\nCaused by: java.lang.OutOfMemoryError: Metaspace\n', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-22 15:14:12', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (169, 1, '2025-12-22 15:25:08', 1, '用户系统', '超级管理员', 1, '超级管理员', '很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 12100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
2、账号 13100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', 0, 'com.study.common.core.exception.ServiceException: 很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 12100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
2、账号 13100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2\n at com.study.system.service.impl.SysUserServiceImpl.importUser(SysUserServiceImpl.java:680)\n at com.study.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$a76938e5.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$ecd4ca3f.importUser()\n at com.study.system.controller.SysUserController.importData(SysUserController.java:129)\n at com.study.system.controller.SysUserController$$FastClassBySpringCGLIB$$e7ab198f.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.controller.SysUserController$$EnhancerBySpringCGLIB$$ba7f84b3.importData()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethod...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-22 15:25:08', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (170, 1, '2025-12-22 20:29:06', 1, '信息系统', '超级管理员', 1, '超级管理员', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,973 milliseconds ago. The last packet sent successfully to the server was 60,003 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,973 milliseconds ago. The last packet sent successfully to the server was 60,003 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,973 milliseconds ago. The last packet sent successfully to the server was 60,003 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 59,973 milliseconds ago. The last packet sent successfully to the server was 60,003 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,973 milliseconds ago. The last packet sent successfully to the server was 60,003 milliseconds ago.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$fc2c6f43.countUnreadMessage2()\n at sun.reflect.GeneratedMethodAccessor81.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServle...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-22 20:29:06', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (171, 1, '2025-12-22 20:29:06', 1, '信息系统', '超级管理员', 1, '超级管理员', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,982 milliseconds ago. The last packet sent successfully to the server was 60,012 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,982 milliseconds ago. The last packet sent successfully to the server was 60,012 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,982 milliseconds ago. The last packet sent successfully to the server was 60,012 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 59,982 milliseconds ago. The last packet sent successfully to the server was 60,012 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,982 milliseconds ago. The last packet sent successfully to the server was 60,012 milliseconds ago.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$fc2c6f43.countUnreadMessage2()\n at sun.reflect.GeneratedMethodAccessor81.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServle...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-22 20:29:06', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (172, 1, '2025-12-22 20:29:06', 1, '信息系统', '超级管理员', 1, '超级管理员', '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,982 milliseconds ago. The last packet sent successfully to the server was 60,012 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,982 milliseconds ago. The last packet sent successfully to the server was 60,012 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,982 milliseconds ago. The last packet sent successfully to the server was 60,012 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 59,982 milliseconds ago. The last packet sent successfully to the server was 60,012 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,982 milliseconds ago. The last packet sent successfully to the server was 60,012 milliseconds ago.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$fc2c6f43.countUnreadMessage2()\n at sun.reflect.GeneratedMethodAccessor81.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServle...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-22 20:29:06', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (173, 17, '2025-12-23 14:43:29', 1, '信息系统', '龙小孟', 123, '院校管理员', '请求地址\'/messageRel/list\',发生系统异常\'ServletOutputStream failed to write: java.io.IOException: Broken pipe\'', 0, 'org.springframework.web.context.request.async.AsyncRequestNotUsableException: ServletOutputStream failed to write: java.io.IOException: Broken pipe\n at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleHttpServletResponse.handleIOException(StandardServletAsyncWebRequest.java:320)\n at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.write(StandardServletAsyncWebRequest.java:378)\n at org.springframework.util.StreamUtils$NonClosingOutputStream.write(StreamUtils.java:287)\n at com.fasterxml.jackson.core.json.UTF8JsonGenerator._flushBuffer(UTF8JsonGenerator.java:2171)\n at com.fasterxml.jackson.core.json.UTF8JsonGenerator.flush(UTF8JsonGenerator.java:1184)\n at com.fasterxml.jackson.databind.ObjectWriter.writeValue(ObjectWriter.java:1009)\n at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.writeInternal(AbstractJackson2HttpMessageConverter.java:456)\n at org.springframework.http.converter.AbstractGenericHttpMessageConverter.write(AbstractGenericHttpMessageConverter.java:104)\n at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:290)\n at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:183)\n at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:78)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:135)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalin...', '127.0.0.1', NULL, NULL, NULL, '13488103555', '2025-12-23 14:43:29', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (174, 1, '2025-12-23 16:28:50', 1, '用户系统', '张大锤', 2, '教师', '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、账号 18189138537 的所属班级编码不正确', 0, 'com.study.common.core.exception.ServiceException: 很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、账号 18189138537 的所属班级编码不正确\n at com.study.system.service.impl.BaseStudentServiceImpl.importStudent(BaseStudentServiceImpl.java:346)\n at com.study.system.service.impl.BaseStudentServiceImpl$$FastClassBySpringCGLIB$$a19843b3.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386)\n at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:703)\n at com.study.system.service.impl.BaseStudentServiceImpl$$EnhancerBySpringCGLIB$$7aebfc57.importStudent()\n at com.study.system.controller.BaseStudentController.importData(BaseStudentController.java:196)\n at com.study.system.controller.BaseStudentController$$FastClassBySpringCGLIB$$ee2a9381.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\n at sun.reflect.GeneratedMethodAccessor341.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.controller.BaseStudentController$$EnhancerBySpringCGLIB$$744fdefa.importData()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter...', '127.0.0.1', NULL, NULL, NULL, '15666666666', '2025-12-23 16:28:50', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (175, 1, '2025-12-23 16:31:29', 1, '用户系统', '超级管理员', 1, '超级管理员', '请求地址\'/user/importData\',发生系统异常\'Handler dispatch failed; nested exception is java.lang.OutOfMemoryError: Metaspace\'', 0, 'org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.OutOfMemoryError: Metaspace\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1087)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:555)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1189)\n at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:658)\n at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)\n at java.lang.Thread.run(Thread.java:750)\nCaused by: java.lang.OutOfMemoryError: Metaspace\n', '0:0:0:0:0:0:0:1%0', NULL, NULL, NULL, 'admin', '2025-12-23 16:31:29', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (176, 1, '2025-12-23 16:31:49', 1, '用户系统', '超级管理员', 1, '超级管理员', '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、账号 15666666999 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', 0, 'com.study.common.core.exception.ServiceException: 很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、账号 15666666999 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2\n at com.study.system.service.impl.SysUserServiceImpl.importUser(SysUserServiceImpl.java:680)\n at com.study.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$a76938e5.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$ba2c95b2.importUser()\n at com.study.system.controller.SysUserController.importData(SysUserController.java:129)\n at com.study.system.controller.SysUserController$$FastClassBySpringCGLIB$$e7ab198f.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\n at sun.reflect.GeneratedMethodAccessor341.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.controller.SysUserController$$EnhancerBySpringCGLIB$$ccd6a9e4.importData()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invok...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-23 16:31:49', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (177, 1, '2025-12-23 17:12:45', 1, '用户系统', '超级管理员', 1, '超级管理员', '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、账号 15666666999 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', 0, 'com.study.common.core.exception.ServiceException: 很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、账号 15666666999 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2\n at com.study.system.service.impl.SysUserServiceImpl.importUser(SysUserServiceImpl.java:680)\n at com.study.system.service.impl.SysUserServiceImpl$$FastClassBySpringCGLIB$$a76938e5.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysUserServiceImpl$$EnhancerBySpringCGLIB$$e6e4af32.importUser()\n at com.study.system.controller.SysUserController.importData(SysUserController.java:129)\n at com.study.system.controller.SysUserController$$FastClassBySpringCGLIB$$e7ab198f.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.controller.SysUserController$$EnhancerBySpringCGLIB$$270fd254.importData()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.j...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2025-12-23 17:12:45', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (178, 1, '2025-12-23 17:18:15', 1, 'AI助教', '超级管理员', 1, '超级管理员', '请求地址\'/aichatsession/latest\',发生未知异常\'Name for argument of type [java.lang.Long] not specified, and parameter name information not found in class file either.\'', 0, 'java.lang.IllegalArgumentException: Name for argument of type [java.lang.Long] not specified, and parameter name information not found in class file either.\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.updateNamedValueInfo(AbstractNamedValueMethodArgumentResolver.java:177)\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.getNamedValueInfo(AbstractNamedValueMethodArgumentResolver.java:154)\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:99)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache...', '0:0:0:0:0:0:0:1%0', NULL, NULL, NULL, 'admin', '2025-12-23 17:18:15', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (179, 1, '2026-01-11 21:21:48', 1, '思政教学', '张大锤', 2, '教师', '请求地址\'/classSchedule/list\',发生系统异常\'ServletOutputStream failed to write: java.io.IOException: Broken pipe\'', 0, 'org.springframework.web.context.request.async.AsyncRequestNotUsableException: ServletOutputStream failed to write: java.io.IOException: Broken pipe\n at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleHttpServletResponse.handleIOException(StandardServletAsyncWebRequest.java:320)\n at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.write(StandardServletAsyncWebRequest.java:378)\n at org.springframework.util.StreamUtils$NonClosingOutputStream.write(StreamUtils.java:287)\n at com.fasterxml.jackson.core.json.UTF8JsonGenerator._flushBuffer(UTF8JsonGenerator.java:2171)\n at com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeNumber(UTF8JsonGenerator.java:990)\n at com.fasterxml.jackson.databind.ser.std.NumberSerializers$LongSerializer.serialize(NumberSerializers.java:195)\n at com.fasterxml.jackson.databind.ser.BeanPropertyWriter.serializeAsField(BeanPropertyWriter.java:728)\n at com.fasterxml.jackson.databind.ser.std.BeanSerializerBase.serializeFields(BeanSerializerBase.java:774)\n at com.fasterxml.jackson.databind.ser.BeanSerializer.serialize(BeanSerializer.java:178)\n at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serializeContents(IndexedListSerializer.java:119)\n at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serialize(IndexedListSerializer.java:79)\n at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serialize(IndexedListSerializer.java:18)\n at com.fasterxml.jackson.databind.ser.BeanPropertyWriter.serializeAsField(BeanPropertyWriter.java:728)\n at com.fasterxml.jackson.databind.ser.std.BeanSerializerBase.serializeFields(BeanSerializerBase.java:774)\n at com.fasterxml.jackson.databind.ser.BeanSerializer.serialize(BeanSerializer.java:178)\n at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serializeContents(IndexedListSerializer.java:119)\n at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serialize(IndexedListSerializer.java:79)\n at com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer.serialize(IndexedListSerializer.java:18)\n at com.fasterxml.jackson.databind.ser.BeanPropertyWriter.serializeAsField(BeanPropertyWriter.java:728)\n at com.fasterxml.jackson.databind.ser.std.BeanSerializerBase.serializeFields(BeanSerializerBase.java:774)\n at com.fasterxml.jackson.databind.ser.BeanSerializer.serialize(BeanSerializer.java:178)\n at com.fasterxml.jackson.databind.ser.DefaultSerializerProvider._serialize(DefaultSerializerProvider.java:480)\n at com.fasterxml.jackson.databind.ser.DefaultSerializerProvider.serializeValue(DefaultSerializerProvider.java:319)\n at com.fasterxml.jackson.databind.ObjectWriter$Prefetch.serialize(ObjectWriter.java:1518)\n at com.fasterxml.jackson.databind.ObjectWriter.writeValue(ObjectWriter.java:1007)\n at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.writeInternal(AbstractJackson2HttpMessageConverter.java:456)\n at org.springframework.http.converter.AbstractGenericHttpMessageConverter.write(AbstractGenericHttpMessageConverter.java:104)\n at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:290)\n at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:183)\n at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:78)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:135)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:5...', '127.0.0.1', NULL, NULL, NULL, '15666666666', '2026-01-11 21:21:48', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (180, 1, '2026-01-11 21:38:45', 2, '教学资源库', '张大锤', 2, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'listAll\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"listAll\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(Sock...', '127.0.0.1', NULL, NULL, NULL, '15666666666', '2026-01-11 21:38:45', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (181, 1, '2026-01-11 21:38:54', 2, '教学资源库', '张大锤', 2, '教师', '请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'listAll\'', 0, 'org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \"listAll\"\n at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\n at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\n at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:168)\n at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)\n at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)\n at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:130)\n at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)\n at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)\n at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:346)\n at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:397)\n at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)\n at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:935)\n at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1826)\n at org.apache.tomcat.util.net.SocketProcessorBase.run(Sock...', '127.0.0.1', NULL, NULL, NULL, '15666666666', '2026-01-11 21:38:54', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (182, 1, '2026-01-12 15:14:44', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,992 milliseconds ago. The last packet sent successfully to the server was 60,024 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,992 milliseconds ago. The last packet sent successfully to the server was 60,024 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,992 milliseconds ago. The last packet sent successfully to the server was 60,024 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 59,992 milliseconds ago. The last packet sent successfully to the server was 60,024 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,992 milliseconds ago. The last packet sent successfully to the server was 60,024 milliseconds ago.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$a941a554.countUnreadMessage2()\n at sun.reflect.GeneratedMethodAccessor144.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServl...', '127.0.0.1', NULL, NULL, NULL, '王武', '2026-01-12 15:14:44', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (183, 1, '2026-01-12 15:14:44', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,996 milliseconds ago. The last packet sent successfully to the server was 60,030 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,996 milliseconds ago. The last packet sent successfully to the server was 60,030 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,996 milliseconds ago. The last packet sent successfully to the server was 60,030 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 59,996 milliseconds ago. The last packet sent successfully to the server was 60,030 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,996 milliseconds ago. The last packet sent successfully to the server was 60,030 milliseconds ago.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$a941a554.countUnreadMessage2()\n at sun.reflect.GeneratedMethodAccessor144.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServl...', '127.0.0.1', NULL, NULL, NULL, '王武', '2026-01-12 15:14:44', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (184, 1, '2026-01-12 15:14:44', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,992 milliseconds ago. The last packet sent successfully to the server was 60,025 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,992 milliseconds ago. The last packet sent successfully to the server was 60,025 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,992 milliseconds ago. The last packet sent successfully to the server was 60,025 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 59,992 milliseconds ago. The last packet sent successfully to the server was 60,025 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,992 milliseconds ago. The last packet sent successfully to the server was 60,025 milliseconds ago.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$a941a554.countUnreadMessage2()\n at sun.reflect.GeneratedMethodAccessor144.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServl...', '127.0.0.1', NULL, NULL, NULL, '王武', '2026-01-12 15:14:44', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (185, 1, '2026-01-12 15:16:44', 1, '信息系统', '王武', 2, NULL, '请求地址\'/messageRel/unreadCount2\',发生未知异常\'\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,542 milliseconds ago. The last packet sent successfully to the server was 59,569 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,542 milliseconds ago. The last packet sent successfully to the server was 59,569 milliseconds ago.\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/information/BaseMessageRelMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT COUNT(*) FROM base_message_rel WHERE user_id = ? and user_type = ? AND read_state = 0\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,542 milliseconds ago. The last packet sent successfully to the server was 59,569 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 59,542 milliseconds ago. The last packet sent successfully to the server was 59,569 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 59,542 milliseconds ago. The last packet sent successfully to the server was 59,569 milliseconds ago.\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy131.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy135.countUnreadMessageByUserTypeAndUserId(Unknown Source)\n at com.study.information.service.impl.BaseMessageRelServiceImpl.countUnreadMessageByUserTypeAndUserId(BaseMessageRelServiceImpl.java:129)\n at com.study.information.controller.BaseMessageRelController.countUnreadMessage2(BaseMessageRelController.java:125)\n at com.study.information.controller.BaseMessageRelController$$FastClassBySpringCGLIB$$4770bc5d.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.information.controller.BaseMessageRelController$$EnhancerBySpringCGLIB$$a941a554.countUnreadMessage2()\n at sun.reflect.GeneratedMethodAccessor144.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServl...', '127.0.0.1', NULL, NULL, NULL, '王武', '2026-01-12 15:16:44', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (186, 1, '2026-01-14 15:22:17', 1, '考试系统', '超级管理员', 1, '超级管理员', '请求地址\'/examInfo/statistics\',发生未知异常\'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'schId\' not found. Available parameters are [schIds, currentSchId, param1, param2]\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter \'schId\' not found. Available parameters are [schIds, currentSchId, param1, param2]\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy122.selectList(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)\n at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:147)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:80)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy124.getDifficultyStatistics(Unknown Source)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl.getDifficultyStatistics(BaseExamInfoServiceImpl.java:216)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl$$FastClassBySpringCGLIB$$29a42ae1.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386)\n at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:703)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl$$EnhancerBySpringCGLIB$$89035a31.getDifficultyStatistics()\n at com.study.examine.controller.BaseExamInfoController.statistics(BaseExamInfoController.java:121)\n at com.study.examine.controller.BaseExamInfoController$$FastClassBySpringCGLIB$$adfcb4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.examine.controller.BaseExamInfoController$$EnhancerBySpringCGLIB$$dc0be914.statistics()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)\n at javax.servlet.http.HttpServlet.service(HttpServlet.java:623)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:199)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)\n at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:168)\n at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:144)\n at org.springframework.web.filter.RequestCon...', '127.0.0.1', NULL, NULL, NULL, 'admin', '2026-01-14 15:22:17', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (187, 1, '2026-01-19 12:40:58', 1, '用户系统', '姜二琦', 1, NULL, '请求地址\'/student/getStudentStudyProgress\',发生未知异常\'\r\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 51,548 milliseconds ago. The last packet sent successfully to the server was 51,573 milliseconds ago.\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\BaseStudentMapper.xml]\r\n### The error ...', 0, 'org.springframework.dao.RecoverableDataAccessException: \r\n### Error querying database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 51,548 milliseconds ago. The last packet sent successfully to the server was 51,573 milliseconds ago.\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\BaseStudentMapper.xml]\r\n### The error may involve com.study.system.mapper.BaseStudentMapper.getStudentStudyProgress-Inline\r\n### The error occurred while setting parameters\r\n### SQL: select bc.id,bc.`name`,(select count(1) from base_chapter a where a.course_id = bc.id and a.is_del=0) as allChapter, (select count(1) from base_chapter b where b.course_id = bc.id and b.is_pass=1 and b.is_del=0) as passChapter from base_course bc left join base_class_sch bcs on bcs.course_id = bc.id left join base_class_sch_org bcso on bcso.class_sch_id= bcs.id where bc.is_use = 1 and bc.review_state = 2 and bc.is_del = 0 and bcs.is_del = 0 and bcso.org_id = ? and bcs.`status` != 3\r\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 51,548 milliseconds ago. The last packet sent successfully to the server was 51,573 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 51,548 milliseconds ago. The last packet sent successfully to the server was 51,573 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 51,548 milliseconds ago. The last packet sent successfully to the server was 51,573 milliseconds ago.\r\n at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:100)\r\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\r\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82)\r\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)\r\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\r\n at com.sun.proxy.$Proxy129.selectList(Unknown Source)\r\n at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)\r\n at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:147)\r\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:80)\r\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\r\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\r\n at com.sun.proxy.$Proxy158.getStudentStudyProgress(Unknown Source)\r\n at com.study.system.service.impl.BaseStudentServiceImpl.getStudentStudyProgress(BaseStudentServiceImpl.java:372)\r\n at com.study.system.service.impl.BaseStudentServiceImpl$$FastClassBySpringCGLIB$$a19843b3.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386)\r\n at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:703)\r\n at com.study.system.service.impl.BaseStudentServiceImpl$$EnhancerBySpringCGLIB$$5fcfcc17.getStudentStudyProgress()\r\n at com.study.system.controller.BaseStudentController.getStudentStudyProgress(BaseStudentController.java:218)\r\n at com.study.system.controller.BaseStudentController$$FastClassBySpringCGLIB$$ee2a9381.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.system.controller.BaseStudentController$$EnhancerBySpringCGLIB$$a26bed22.getStudentStudyProgress()\r\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n ...', '127.0.0.1', NULL, NULL, NULL, '姜二琦', '2026-01-19 12:40:58', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (188, 1, '2026-01-19 15:03:42', 1, '考试系统', '姜二琦', 1, NULL, '请求地址\'/examInfo/10021\',发生未知异常\'nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 6\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 6\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy122.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy124.selectBaseExamInfoById(Unknown Source)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl.selectBaseExamInfoById(BaseExamInfoServiceImpl.java:44)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl$$FastClassBySpringCGLIB$$29a42ae1.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386)\n at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:703)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl$$EnhancerBySpringCGLIB$$7f173699.selectBaseExamInfoById()\n at com.study.examine.controller.BaseExamInfoController.getInfo(BaseExamInfoController.java:78)\n at com.study.examine.controller.BaseExamInfoController$$FastClassBySpringCGLIB$$adfcb4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\n at sun.reflect.GeneratedMethodAccessor120.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.examine.controller.BaseExamInfoController$$EnhancerBySpringCGLIB$$223d9829.getInfo()\n at sun.reflect.GeneratedMethodAccessor311.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet...', '127.0.0.1', NULL, NULL, NULL, '姜二琦', '2026-01-19 15:03:42', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (189, 1, '2026-01-19 15:04:39', 1, '考试系统', '姜二琦', 1, NULL, '请求地址\'/examInfo/10021\',发生未知异常\'nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 6\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 6\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy122.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy124.selectBaseExamInfoById(Unknown Source)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl.selectBaseExamInfoById(BaseExamInfoServiceImpl.java:44)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl$$FastClassBySpringCGLIB$$29a42ae1.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386)\n at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:703)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl$$EnhancerBySpringCGLIB$$7f173699.selectBaseExamInfoById()\n at com.study.examine.controller.BaseExamInfoController.getInfo(BaseExamInfoController.java:78)\n at com.study.examine.controller.BaseExamInfoController$$FastClassBySpringCGLIB$$adfcb4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\n at sun.reflect.GeneratedMethodAccessor120.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.examine.controller.BaseExamInfoController$$EnhancerBySpringCGLIB$$223d9829.getInfo()\n at sun.reflect.GeneratedMethodAccessor311.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet...', '127.0.0.1', NULL, NULL, NULL, '姜二琦', '2026-01-19 15:04:39', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (190, 1, '2026-01-19 15:04:41', 1, '考试系统', '姜二琦', 1, NULL, '请求地址\'/examInfo/10021\',发生未知异常\'nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 6\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 6\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy122.selectOne(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:160)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy124.selectBaseExamInfoById(Unknown Source)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl.selectBaseExamInfoById(BaseExamInfoServiceImpl.java:44)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl$$FastClassBySpringCGLIB$$29a42ae1.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386)\n at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:703)\n at com.study.examine.service.impl.BaseExamInfoServiceImpl$$EnhancerBySpringCGLIB$$7f173699.selectBaseExamInfoById()\n at com.study.examine.controller.BaseExamInfoController.getInfo(BaseExamInfoController.java:78)\n at com.study.examine.controller.BaseExamInfoController$$FastClassBySpringCGLIB$$adfcb4ad.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\n at sun.reflect.GeneratedMethodAccessor120.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.examine.controller.BaseExamInfoController$$EnhancerBySpringCGLIB$$223d9829.getInfo()\n at sun.reflect.GeneratedMethodAccessor311.invoke(Unknown Source)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\n at org.springframework.web.servlet...', '127.0.0.1', NULL, NULL, NULL, '姜二琦', '2026-01-19 15:04:41', NULL, NULL); INSERT INTO `base_sys_log` (`log_id`, `sch_id`, `log_time`, `log_level`, `module`, `user_name`, `user_id`, `user_role`, `content`, `status`, `error_stack`, `ip`, `ip_region`, `remark`, `processing_record`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (191, 17, '2026-01-19 15:38:15', 1, '考试系统', '龙小孟', 123, '院校管理员', '请求地址\'/examQuestion/list\',发生未知异常\'nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named \'orderByClause\' in \'class com.study.examine.domain.BaseExamQuestion\'\'', 0, 'org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named \'orderByClause\' in \'class com.study.examine.domain.BaseExamQuestion\'\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)\n at com.sun.proxy.$Proxy121.selectList(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)\n at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:147)\n at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:80)\n at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)\n at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\n at com.sun.proxy.$Proxy125.selectBaseExamQuestionList(Unknown Source)\n at com.study.examine.service.impl.BaseExamQuestionServiceImpl.selectBaseExamQuestionList(BaseExamQuestionServiceImpl.java:63)\n at com.study.examine.service.impl.BaseExamQuestionServiceImpl$$FastClassBySpringCGLIB$$276b93a9.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386)\n at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:703)\n at com.study.examine.service.impl.BaseExamQuestionServiceImpl$$EnhancerBySpringCGLIB$$ef6bd22e.selectBaseExamQuestionList()\n at com.study.examine.controller.BaseExamQuestionController.list(BaseExamQuestionController.java:51)\n at com.study.examine.controller.BaseExamQuestionController$$FastClassBySpringCGLIB$$37f4c65.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.examine.controller.BaseExamQuestionController$$EnhancerBySpringCGLIB$$e7ddaf2d.list()\n at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.lang.reflect.Method.invoke(Method.java:498)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org....', '113.132.46.175', NULL, NULL, NULL, '13488103555', '2026-01-19 15:38:15', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_teacher -- ---------------------------- DROP TABLE IF EXISTS `base_teacher`; CREATE TABLE `base_teacher` ( `id` bigint NOT NULL AUTO_INCREMENT, `school_id` bigint DEFAULT NULL COMMENT '学校ID', `name` varchar(255) DEFAULT NULL COMMENT '姓名', `teacher_id` varchar(50) DEFAULT NULL COMMENT '工号', `phone` varchar(50) DEFAULT NULL COMMENT '手机号', `password` varchar(255) DEFAULT NULL COMMENT '密码', `gender` int DEFAULT NULL COMMENT '性别1.男 2.女', `department_id` bigint DEFAULT NULL COMMENT '所在院系', `enter_date` datetime DEFAULT NULL COMMENT '加入时间', `teach_state` int DEFAULT '1' COMMENT '教师状态1.正常 2.停用', `email` varchar(255) DEFAULT NULL COMMENT '电子邮箱', `student_remark` varchar(255) DEFAULT NULL COMMENT '备注', `is_use` int DEFAULT '1' COMMENT '是否启用', `is_del` int DEFAULT '0', `state` int DEFAULT NULL, `remark` varchar(255) DEFAULT NULL, `create_by` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, `update_by` varchar(255) DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='教师信息'; -- ---------------------------- -- Records of base_teacher -- ---------------------------- BEGIN; INSERT INTO `base_teacher` (`id`, `school_id`, `name`, `teacher_id`, `phone`, `password`, `gender`, `department_id`, `enter_date`, `teach_state`, `email`, `student_remark`, `is_use`, `is_del`, `state`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 1, '李君', 'SXYZT01', '13388889999', NULL, 1, NULL, '2025-10-24 14:42:43', 1, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for base_todo -- ---------------------------- DROP TABLE IF EXISTS `base_todo`; CREATE TABLE `base_todo` ( `id` bigint NOT NULL AUTO_INCREMENT, `app_id` bigint DEFAULT NULL, `name` varchar(255) DEFAULT NULL COMMENT '待办名称', `user_id` bigint DEFAULT NULL COMMENT '用户ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='待办'; -- ---------------------------- -- Records of base_todo -- ---------------------------- BEGIN; INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (14, 5, '123', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (15, 3, '222', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (16, 3, '1', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (17, 3, '3', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (18, 3, '4', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (19, 3, '5', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (20, 3, '6', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (21, 3, '7', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (22, 3, '8', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (23, 3, '9', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (25, 5, '我的信息代办', 123); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (27, 3, '我的资源代办2', 123); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (28, 1, '用户待办1', 100); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (29, 1, '用户待办2', 100); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (30, 1, '用户待办3', 100); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (31, 1, '用户待办4', 100); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (34, 1, '12', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (35, 1, '我的用户管理代办', 123); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (36, 4, '1212', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (37, 2, 'aaa', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (38, 2, 'bbb', 123); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (39, 2, '待办1', 127); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (41, 3, '888888', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (42, 1, '21', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (43, 4, '555', 1); INSERT INTO `base_todo` (`id`, `app_id`, `name`, `user_id`) VALUES (48, 5, '4444', 100); COMMIT; -- ---------------------------- -- 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) DEFAULT '' COMMENT '表名称', `table_comment` varchar(500) DEFAULT '' COMMENT '表描述', `sub_table_name` varchar(64) DEFAULT NULL COMMENT '关联子表的表名', `sub_table_fk_name` varchar(64) DEFAULT NULL COMMENT '子表关联的外键名', `class_name` varchar(100) DEFAULT '' COMMENT '实体类名称', `tpl_category` varchar(200) DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)', `tpl_web_type` varchar(30) DEFAULT '' COMMENT '前端模板类型(element-ui模版 element-plus模版)', `package_name` varchar(100) DEFAULT NULL COMMENT '生成包路径', `module_name` varchar(30) DEFAULT NULL COMMENT '生成模块名', `business_name` varchar(30) DEFAULT NULL COMMENT '生成业务名', `function_name` varchar(50) DEFAULT NULL COMMENT '生成功能名', `function_author` varchar(50) DEFAULT NULL COMMENT '生成功能作者', `gen_type` char(1) DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)', `gen_path` varchar(200) DEFAULT '/' COMMENT '生成路径(不填默认项目路径)', `options` varchar(1000) DEFAULT NULL COMMENT '其它生成选项', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`table_id`) ) ENGINE=InnoDB AUTO_INCREMENT=113 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='代码生成业务表'; -- ---------------------------- -- Records of gen_table -- ---------------------------- BEGIN; INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (67, 'base_academic', '学年学期设置', NULL, NULL, 'BaseAcademic', 'crud', '', 'com.study.system', 'system', 'academic', '学年学期设置', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2009}', 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (68, 'base_app', '系统应用', NULL, NULL, 'BaseApp', 'crud', '', 'com.study.setting', 'setting', 'apps', '应用管理', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2044}', 'admin', '2025-10-24 15:52:19', '', '2025-10-27 16:46:27', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (69, 'base_chapter', '章节信息', NULL, NULL, 'BaseChapter', 'crud', '', 'com.study.teaching', 'teaching', 'chapter', '章节信息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2012}', 'admin', '2025-10-24 15:52:19', '', '2025-10-24 17:48:08', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (70, 'base_course', '课程信息', NULL, NULL, 'BaseCourse', 'crud', '', 'com.study.teaching', 'teaching', 'course', '课程信息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2012}', 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:25', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (71, 'base_course_review', '课程审核记录', NULL, NULL, 'BaseCourseReview', 'crud', '', 'com.study.teaching', 'teaching', 'review', '课程审核记录', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2012}', 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:40', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (72, 'base_organization', '组织信息', NULL, NULL, 'BaseOrganization', 'crud', '', 'com.study.setting', 'setting', 'organization', '组织信息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2009}', 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:31', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (73, 'base_role', '系统角色', NULL, NULL, 'BaseRole', 'crud', '', 'com.study.system', 'system', 'role', '系统角色', '陕西研筑信息技术', '0', '/', NULL, 'admin', '2025-10-24 15:52:23', '', NULL, NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (74, 'base_school', '学校信息', NULL, NULL, 'BaseSchool', 'crud', '', 'com.study.setting', 'setting', 'school', '学校信息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2043}', 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:28', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (75, 'base_student', '学生信息', NULL, NULL, 'BaseStudent', 'crud', '', 'com.study.system', 'system', 'student', '学生信息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":1000}', 'admin', '2025-10-24 15:52:25', '', '2025-11-05 15:03:02', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (76, 'base_teacher', '教师信息', NULL, NULL, 'BaseTeacher', 'crud', '', 'com.study.system', 'system', 'teacher', '教师管理', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2010}', 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (77, 'base_teacher_class', '教师所带班级信息', NULL, NULL, 'BaseTeacherClass', 'crud', '', 'com.study.system', 'system', 'class', '教师所带班级信息', '陕西研筑信息技术', '0', '/', NULL, 'admin', '2025-10-24 15:52:27', '', NULL, NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (78, 'base_basic_info', '系统配置-基本信息表', NULL, NULL, 'BaseBasicInfo', 'crud', '', 'com.study.setting', 'setting', 'baseInfo', '基本信息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2039}', 'admin', '2025-10-25 15:24:19', '', '2025-10-25 16:01:43', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (79, 'base_chapter_content', '章节内容信息', NULL, NULL, 'BaseChapterContent', 'crud', '', 'com.study.teaching', 'teaching', 'chapterContent', '章节内容信息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2012}', 'admin', '2025-10-29 14:18:15', '', '2025-10-29 16:12:23', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (80, 'base_operation_log', '操作日志表', NULL, NULL, 'BaseOperationLog', 'crud', '', 'com.study.common.log', 'log', 'operation-log', '操作日志管理', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2057}', 'admin', '2025-10-29 15:17:38', '', '2025-10-29 15:34:53', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (81, 'base_sys_log', '系统日志表', NULL, NULL, 'BaseSysLog', 'crud', '', 'com.study.common.log', 'syslog', 'syslog', '系统日志', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2057}', 'admin', '2025-10-30 10:38:11', '', '2025-10-30 10:50:21', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (82, 'base_resource_category', '资源分类表', NULL, NULL, 'BaseResourceCategory', 'crud', '', 'com.study.resource', 'resource', 'resouceCategory', '资源分类设置', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2092}', 'admin', '2025-11-03 12:02:00', '', '2025-11-03 12:16:31', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (83, 'base_resource_subject_category', '学科门类表', NULL, NULL, 'BaseResourceSubjectCategory', 'crud', '', 'com.study.resource', 'resource', 'subjectCategory', '学科门类设置', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2092}', 'admin', '2025-11-03 12:02:00', '', '2025-11-03 14:12:28', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (84, 'base_resource_tag', '资源标签表', NULL, NULL, 'BaseResourceTag', 'crud', '', 'com.study.resource', 'resource', 'resourceTag', '资源标签设置', '陕西研筑信息技术', '0', '/', '{}', 'admin', '2025-11-03 12:02:01', '', '2025-11-03 12:20:44', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (85, 'base_resource_type', '资源类型表', NULL, NULL, 'BaseResourceType', 'crud', '', 'com.study.resource', 'resource', 'resourceType', '资源类型设置', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2092}', 'admin', '2025-11-03 12:02:01', '', '2025-11-03 14:12:09', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (86, 'base_resource', '教学资源表', NULL, NULL, 'BaseResource', 'crud', '', 'com.study.resource', 'resource', 'resource', '资源管理', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2117}', 'admin', '2025-11-04 12:11:15', '', '2025-11-04 12:40:51', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (87, 'base_exam_info', '基础试卷', 'base_exam_info_question', 'exam_id', 'BaseExamInfo', 'sub', '', 'com.study.examine', 'examine', 'examInfo', '基础试卷', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2004}', 'admin', '2025-11-08 15:00:52', '', '2025-11-08 15:05:16', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (88, 'base_exam_info_question', '试卷问题', NULL, NULL, 'BaseExamInfoQuestion', 'crud', '', 'com.study.examine', 'examine', 'examInfoQuestion', '试卷问题', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2004}', 'admin', '2025-11-08 15:00:53', '', '2025-11-10 10:09:24', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (89, 'base_exam_question', '基础题库', 'base_exam_question_result', 'question_id', 'BaseExamQuestion', 'sub', '', 'com.study.examine', 'examine', 'examQuestion', '基础题库', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2004}', 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:58', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (90, 'base_exam_question_result', '题库问题', NULL, NULL, 'BaseExamQuestionResult', 'crud', '', 'com.study.examine', 'examine', 'examQuestionResult', '题库问题', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2004}', 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:10:45', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (91, 'base_chapter_content_resource', '章节信息内容资源ID', NULL, NULL, 'BaseChapterContentResource', 'crud', '', 'com.study.teaching', 'teaching', 'chapterContentResource', '章节信息内容资源', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2012}', 'admin', '2025-11-08 16:56:44', '', '2025-11-08 17:04:30', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (94, 'base_message', '消息表', NULL, NULL, 'BaseMessage', 'crud', '', 'com.study.information', 'information', 'message', '系统消息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2172}', 'admin', '2025-11-12 14:46:21', '', '2025-11-12 16:27:33', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (95, 'base_class_sch', '上课信息', NULL, NULL, 'BaseClassSch', 'crud', '', 'com.study.teaching', 'teaching', 'classSchedule', '上课信息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2013}', '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (96, 'base_class_sch_org', '上课-班级信息', NULL, NULL, 'BaseClassSchOrg', 'crud', '', 'com.study.teaching', 'teaching', 'classScheduleOrg', '上课-班级信息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2013}', '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:36:40', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (97, 'base_class_sch_teacher', '上课-老师信息', NULL, NULL, 'BaseClassSchTeacher', 'crud', '', 'com.study.teaching', 'teaching', 'classScheduleTeacher', '上课-老师信息', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2013}', '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:37:28', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (98, 'base_class_sch_week', '上课-周几信息\n', NULL, NULL, 'BaseClassSchWeek', 'crud', '', 'com.study.teaching', 'teaching', 'classScheduleWeek', '上课按排', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2013}', '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:38:14', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (99, 'base_message_rel', '用户消息表', NULL, NULL, 'BaseMessageRel', 'crud', '', 'com.study.information', 'information', 'messageRel', '用户消息表', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2173}', 'admin', '2025-11-14 14:18:32', '', '2025-11-14 14:26:03', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (100, 'base_exam_plan', '考试安排', 'base_exam_plan_class', 'plan_id', 'BaseExamPlan', 'sub', '', 'com.study.examine', 'examine', 'examPlan', '考试安排', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2171}', 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:45', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (103, 'base_exam_student_result', '学生考试结果', NULL, NULL, 'BaseExamStudentResult', 'crud', '', 'com.study.examine', 'examine', 'examStudentResult', '学生考试结果', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2171}', 'admin', '2025-11-15 14:59:22', '', '2025-11-15 15:44:15', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (104, 'base_exam_plan_class', '考试安排范围', NULL, NULL, 'BaseExamPlanClass', 'crud', '', 'com.study.system', 'system', 'class', '考试安排范围', '陕西研筑信息技术', '0', '/', NULL, 'admin', '2025-11-15 15:03:39', '', NULL, NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (105, 'base_exam_student', '学生考试', 'base_exam_student_result', 'exam_student_id', 'BaseExamStudent', 'sub', '', 'com.study.examine', 'examine', 'examStudent', '学生考试', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2171}', 'admin', '2025-11-15 15:07:01', '', '2025-11-15 15:08:31', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (106, 'base_todo', '待办表', NULL, NULL, 'BaseTodo', 'crud', '', 'com.study.system', 'system', 'todo', '待办', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":4}', 'admin', '2025-11-24 17:11:05', '', '2025-11-24 17:14:01', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (107, 'base_homework', '作业基本信息表', NULL, NULL, 'BaseHomework', 'crud', '', 'com.study.teaching', 'teaching', 'homework', '理论作业', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2014}', 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:24', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (108, 'base_homework_student', '学生作业', NULL, NULL, 'BaseHomeworkStudent', 'crud', '', 'com.study.teaching', 'teaching', 'studentHomeWork', '作业统计', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2014}', 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:20:17', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, 'base_homework_student_result', '学生作业结果', NULL, NULL, 'BaseHomeworkStudentResult', 'crud', '', 'com.study.teaching', 'teaching', 'studentHomeWorkResult', '学生作业结果', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2014}', 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:21:08', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (110, 'base_homework_class', '作业班级关系表\n', NULL, NULL, 'BaseHomeworkClass', 'crud', '', 'com.study.teaching', 'teaching', 'homeWorkClass', '作业班级关系\n', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2014}', 'admin', '2025-12-01 15:23:06', '', '2025-12-01 15:24:31', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (111, 'base_homework_question', '作业试题', NULL, NULL, 'BaseHomeworkQuestion', 'crud', '', 'com.study.teaching', 'teaching', 'homeWorkQuestion', '作业试题', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2014}', 'admin', '2025-12-01 15:23:06', '', '2025-12-01 15:24:57', NULL); INSERT INTO `gen_table` (`table_id`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `tpl_web_type`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (112, 'base_backup', '数据库备份表', NULL, NULL, 'BaseBackup', 'crud', '', 'com.study.setting', 'setting', 'backup', '系统备份', '陕西研筑信息技术', '0', '/', '{\"parentMenuId\":2056}', 'admin', '2025-12-02 16:18:17', '', '2025-12-02 16:20:42', NULL); COMMIT; -- ---------------------------- -- Table structure for gen_table_column -- ---------------------------- DROP TABLE IF EXISTS `gen_table_column`; CREATE TABLE `gen_table_column` ( `column_id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `table_id` bigint DEFAULT NULL COMMENT '归属表编号', `column_name` varchar(200) DEFAULT NULL COMMENT '列名称', `column_comment` varchar(500) DEFAULT NULL COMMENT '列描述', `column_type` varchar(100) DEFAULT NULL COMMENT '列类型', `java_type` varchar(500) DEFAULT NULL COMMENT 'JAVA类型', `java_field` varchar(200) DEFAULT NULL COMMENT 'JAVA字段名', `is_pk` char(1) DEFAULT NULL COMMENT '是否主键(1是)', `is_increment` char(1) DEFAULT NULL COMMENT '是否自增(1是)', `is_required` char(1) DEFAULT NULL COMMENT '是否必填(1是)', `is_insert` char(1) DEFAULT NULL COMMENT '是否为插入字段(1是)', `is_edit` char(1) DEFAULT NULL COMMENT '是否编辑字段(1是)', `is_list` char(1) DEFAULT NULL COMMENT '是否列表字段(1是)', `is_query` char(1) DEFAULT NULL COMMENT '是否查询字段(1是)', `query_type` varchar(200) DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)', `html_type` varchar(200) DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)', `dict_type` varchar(200) DEFAULT '' COMMENT '字典类型', `sort` int DEFAULT NULL COMMENT '排序', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`column_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1559 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='代码生成业务表字段'; -- ---------------------------- -- Records of gen_table_column -- ---------------------------- BEGIN; INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (973, 67, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (974, 67, 'school_id', '学校ID', 'bigint', 'Long', 'schoolId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (975, 67, 'name', '名称', 'varchar(255)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (976, 67, 'start_date', '开始时间', 'datetime', 'Date', 'startDate', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 4, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (977, 67, 'end_date', '结束时间', 'datetime', 'Date', 'endDate', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 5, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (978, 67, 'is_current', '是否当前学期 0 否 1是', 'int', 'Long', 'isCurrent', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (979, 67, 'is_del', NULL, 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (980, 67, 'state', NULL, 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (981, 67, 'remark', NULL, 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 9, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (982, 67, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 10, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (983, 67, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 11, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (984, 67, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 12, 'admin', '2025-10-24 15:52:18', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (985, 67, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 13, 'admin', '2025-10-24 15:52:19', '', '2025-10-31 15:22:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (990, 68, 'is_use', '是否启用', 'int', 'Long', 'isUse', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-24 15:52:19', '', '2025-10-27 16:46:27'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (991, 68, 'is_del', '', 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-24 15:52:19', '', '2025-10-27 16:46:27'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (993, 68, 'remark', '', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 8, 'admin', '2025-10-24 15:52:19', '', '2025-10-27 16:46:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (994, 68, 'create_by', '', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 9, 'admin', '2025-10-24 15:52:19', '', '2025-10-27 16:46:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (995, 68, 'create_time', '', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 10, 'admin', '2025-10-24 15:52:19', '', '2025-10-27 16:46:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (996, 68, 'update_by', '', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2025-10-24 15:52:19', '', '2025-10-27 16:46:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (997, 68, 'update_time', '', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 12, 'admin', '2025-10-24 15:52:19', '', '2025-10-27 16:46:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (998, 69, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-24 15:52:19', '', '2025-10-24 17:48:08'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (999, 69, 'school_id', '学校ID', 'bigint', 'Long', 'schoolId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-10-24 15:52:19', '', '2025-10-24 17:48:08'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1000, 69, 'course_id', '课程ID', 'bigint', 'Long', 'courseId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-10-24 15:52:19', '', '2025-10-24 17:48:08'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1001, 69, 'pid', '父ID', 'bigint', 'Long', 'pid', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:08'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1002, 69, 'level', '级别', 'int', 'Long', 'level', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:08'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1003, 69, 'is_open', '是否开放1.是, 2.否', 'int', 'Long', 'isOpen', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:08'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1004, 69, 'ref_count', '引用次数', 'int', 'Long', 'refCount', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1005, 69, 'is_del', NULL, 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1006, 69, 'state', NULL, 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1007, 69, 'remark', NULL, 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 10, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1008, 69, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1009, 69, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 12, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1010, 69, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 13, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1011, 69, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 14, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1012, 70, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1013, 70, 'school_id', '学校ID', 'bigint', 'Long', 'schoolId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1014, 70, 'cover_url', '课程封面', 'varchar(255)', 'String', 'coverUrl', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1015, 70, 'name', '姓名', 'varchar(255)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 4, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1016, 70, 'cover', '课程名称', 'varchar(255)', 'String', 'cover', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1017, 70, 'label', '标签', 'varchar(255)', 'String', 'label', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-24 15:52:20', '', '2025-10-24 17:48:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1018, 70, 'desc', '课程简介', 'mediumtext', 'String', 'desc', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 7, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1019, 70, 'course_type', '精品示范课程 1.精品资源,2.精品课程,3示范资源,4.示范课程', 'int', 'Long', 'courseType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 8, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1020, 70, 'resource', '资源文件', 'varchar(1024)', 'String', 'resource', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 9, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1021, 70, 'is_use', '是否启用', 'int', 'Long', 'isUse', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1022, 70, 'review_state', '审核状态 1.待审核, 2.审核通过,3.驳回,4.草稿 ', 'int', 'Long', 'reviewState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1023, 70, 'ref_count', '引用次数', 'int', 'Long', 'refCount', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1024, 70, 'course_state', '课程类型 1.正本 2. 副本 ', 'int', 'Long', 'courseState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1025, 70, 'is_del', NULL, 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1026, 70, 'state', NULL, 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1027, 70, 'remark', NULL, 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 16, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1028, 70, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 17, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1029, 70, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 18, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1030, 70, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 19, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1031, 70, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 20, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1032, 71, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1033, 71, 'coure_id', '课程ID', 'bigint', 'Long', 'coureId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1034, 71, 'review_state', '审核状态 1.驳回 2.通过', 'int', 'Long', 'reviewState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-10-24 15:52:21', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1035, 71, 'review_desc', '审核说明', 'mediumtext', 'String', 'reviewDesc', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 4, 'admin', '2025-10-24 15:52:22', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1036, 71, 'is_del', NULL, 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-24 15:52:22', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1037, 71, 'state', NULL, 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-24 15:52:22', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1038, 71, 'remark', NULL, 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 7, 'admin', '2025-10-24 15:52:22', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1039, 71, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 8, 'admin', '2025-10-24 15:52:22', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1040, 71, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 9, 'admin', '2025-10-24 15:52:22', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1041, 71, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 10, 'admin', '2025-10-24 15:52:22', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1042, 71, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 11, 'admin', '2025-10-24 15:52:22', '', '2025-10-24 17:48:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1043, 72, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1044, 72, 'school_id', '学校ID', 'bigint', 'Long', 'schoolId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1045, 72, 'org_name', '组织名称', 'varchar(255)', 'String', 'orgName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1046, 72, 'org_pid', '父级ID', 'bigint', 'Long', 'orgPid', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1047, 72, 'org_level', '层级1-院校2-专业3-学届4-班级', 'int', 'Long', 'orgLevel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1048, 72, 'is_current', '是否当前学年', 'int', 'Long', 'isCurrent', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1049, 72, 'enter_year', '入学年份', 'varchar(50)', 'String', 'enterYear', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1050, 72, 'start_year', '起始学年', 'int', 'Long', 'startYear', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1051, 72, 'end_year', '结束学年', 'int', 'Long', 'endYear', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1052, 72, 'org_state', '状态1.未处理 2.已处理', 'int', 'Long', 'orgState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-10-24 15:52:22', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1053, 72, 'is_del', NULL, 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-10-24 15:52:23', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1054, 72, 'state', NULL, 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-10-24 15:52:23', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1055, 72, 'remark', NULL, 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 13, 'admin', '2025-10-24 15:52:23', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1056, 72, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 14, 'admin', '2025-10-24 15:52:23', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1057, 72, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 15, 'admin', '2025-10-24 15:52:23', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1058, 72, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 16, 'admin', '2025-10-24 15:52:23', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1059, 72, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 17, 'admin', '2025-10-24 15:52:23', '', '2025-11-01 10:17:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1060, 73, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-24 15:52:23', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1061, 73, 'school_id', '学校ID', 'bigint', 'Long', 'schoolId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-10-24 15:52:23', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1062, 73, 'name', '角色名称', 'varchar(255)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2025-10-24 15:52:23', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1063, 73, 'permission', '权限', 'mediumtext', 'String', 'permission', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 4, 'admin', '2025-10-24 15:52:23', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1064, 73, 'use_count', '使用数量', 'int', 'Long', 'useCount', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-24 15:52:23', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1065, 73, 'is_use', '是否启用', 'int', 'Long', 'isUse', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-24 15:52:23', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1066, 73, 'is_del', NULL, 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-10-24 15:52:23', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1067, 73, 'state', NULL, 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-10-24 15:52:23', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1068, 73, 'remark', NULL, 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 9, 'admin', '2025-10-24 15:52:23', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1069, 73, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 10, 'admin', '2025-10-24 15:52:23', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1070, 73, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 11, 'admin', '2025-10-24 15:52:24', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1071, 73, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 12, 'admin', '2025-10-24 15:52:24', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1072, 73, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 13, 'admin', '2025-10-24 15:52:24', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1076, 74, 'manager', '管理员', 'varchar(255)', 'String', 'manager', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1077, 74, 'mgr_gender', '性别:1-男,0-女', 'varchar(10)', 'String', 'mgrGender', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1078, 74, 'mgr_phone', '管理员电话', 'varchar(20)', 'String', 'mgrPhone', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1079, 74, 'mail', '邮箱', 'varchar(255)', 'String', 'mail', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1080, 74, 'apps', '授权应用', 'varchar(255)', 'String', 'apps', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1081, 74, 'status', '院校状态:1-启用,0-禁用', 'int', 'Integer', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 9, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1082, 74, 'remark', '', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 11, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1083, 74, 'is_del', '', 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1084, 74, 'create_by', '', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 13, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1085, 74, 'create_time', '', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 14, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1086, 74, 'update_by', '', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 15, 'admin', '2025-10-24 15:52:24', '', '2025-10-27 22:49:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1087, 74, 'update_time', '', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 16, 'admin', '2025-10-24 15:52:25', '', '2025-10-27 22:49:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1088, 75, 'id', 'ID', 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-24 15:52:25', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1092, 75, 'password', '密码', 'varchar(255)', 'String', 'password', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-10-24 15:52:25', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1098, 75, 'email', '学生邮箱', 'varchar(255)', 'String', 'email', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-10-24 15:52:25', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1104, 75, 'remark', '备注', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'textarea', '', 21, 'admin', '2025-10-24 15:52:26', '', '2025-11-05 15:03:04'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1105, 75, 'create_by', '创建者', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 17, 'admin', '2025-10-24 15:52:26', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1106, 75, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 18, 'admin', '2025-10-24 15:52:26', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1107, 75, 'update_by', '更新者', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 19, 'admin', '2025-10-24 15:52:26', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1108, 75, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 20, 'admin', '2025-10-24 15:52:26', '', '2025-11-05 15:03:04'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1109, 76, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1110, 76, 'school_id', '学校ID', 'bigint', 'Long', 'schoolId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1111, 76, 'name', '姓名', 'varchar(255)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1112, 76, 'teacher_id', '工号', 'varchar(50)', 'String', 'teacherId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1113, 76, 'phone', '手机号', 'varchar(50)', 'String', 'phone', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1114, 76, 'password', '密码', 'varchar(255)', 'String', 'password', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1115, 76, 'gender', '性别1.男 2.女', 'int', 'Long', 'gender', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1116, 76, 'department_id', '所在院系', 'bigint', 'Long', 'departmentId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1117, 76, 'enter_date', '加入时间', 'datetime', 'Date', 'enterDate', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 9, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1118, 76, 'teach_state', '教师状态1.正常 2.停用', 'int', 'Long', 'teachState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1119, 76, 'email', '电子邮箱', 'varchar(255)', 'String', 'email', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1120, 76, 'student_remark', '备注', 'varchar(255)', 'String', 'studentRemark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1121, 76, 'is_use', '是否启用', 'int', 'Long', 'isUse', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2025-10-24 15:52:26', '', '2025-10-24 17:04:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1122, 76, 'is_del', NULL, 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2025-10-24 15:52:27', '', '2025-10-24 17:04:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1123, 76, 'state', NULL, 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2025-10-24 15:52:27', '', '2025-10-24 17:04:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1124, 76, 'remark', NULL, 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 16, 'admin', '2025-10-24 15:52:27', '', '2025-10-24 17:04:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1125, 76, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 17, 'admin', '2025-10-24 15:52:27', '', '2025-10-24 17:04:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1126, 76, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 18, 'admin', '2025-10-24 15:52:27', '', '2025-10-24 17:04:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1127, 76, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 19, 'admin', '2025-10-24 15:52:27', '', '2025-10-24 17:04:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1128, 76, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 20, 'admin', '2025-10-24 15:52:27', '', '2025-10-24 17:04:29'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1129, 77, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-24 15:52:27', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1130, 77, 'teacher_id', '教师ID', 'bigint', 'Long', 'teacherId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-10-24 15:52:27', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1131, 77, 'class_id', '所属班级', 'bigint', 'Long', 'classId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-10-24 15:52:27', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1132, 77, 'is_del', NULL, 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-10-24 15:52:27', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1133, 77, 'state', NULL, 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-24 15:52:27', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1134, 77, 'remark', NULL, 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 6, 'admin', '2025-10-24 15:52:27', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1135, 78, 'setting_id', '主键', 'bigint', 'Long', 'settingId', '1', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-25 15:24:19', '', '2025-10-25 16:01:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1136, 78, 'system_name', '系统名称', 'varchar(20)', 'String', 'systemName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 2, 'admin', '2025-10-25 15:24:19', '', '2025-10-25 16:01:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1137, 78, 'sys_logo_path', '系统logo', 'varchar(500)', 'String', 'sysLogoPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 3, 'admin', '2025-10-25 15:24:19', '', '2025-10-25 16:01:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1138, 78, 'portal_url', '教学门户访问地址', 'varchar(255)', 'String', 'portalUrl', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-10-25 15:24:19', '', '2025-10-25 16:01:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1139, 78, 'admin_url', '管理后台访问地址', 'varchar(255)', 'String', 'adminUrl', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-25 15:24:19', '', '2025-10-25 16:01:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1140, 78, 'seo_key_words', '系统SEO搜索关键词', 'varchar(255)', 'String', 'seoKeyWords', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1141, 78, 'welcome_message', '系统欢迎词', 'varchar(255)', 'String', 'welcomeMessage', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1142, 78, 'welcome_hint', '系统欢迎词提示语', 'varchar(255)', 'String', 'welcomeHint', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1143, 78, 'copyright', '系统版权信息', 'varchar(255)', 'String', 'copyright', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1144, 78, 'gray_flag', '一建置灰,0-不置灰;1-置灰', 'smallint', 'Long', 'grayFlag', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1145, 78, 'vx_qr_code_display', '微信公众号二维码是否展示:0-不显示,1-显示', 'smallint', 'Long', 'vxQrCodeDisplay', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1146, 78, 'vx_qr_code_img_path', '微信公众号二堆码图片地址', 'varchar(255)', 'String', 'vxQrCodeImgPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1147, 78, 'ai_robots_display', 'AI机器人是否显示:0-不显示,1-显示', 'smallint', 'Long', 'aiRobotsDisplay', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1148, 78, 'ai_robots_icon_path', 'AI帮助机器人图标地址', 'varchar(255)', 'String', 'aiRobotsIconPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1149, 78, 'app_qr_code_display', '思政APP二维码是否展示:0-不显示,1-显示', 'smallint', 'Long', 'appQrCodeDisplay', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1150, 78, 'app_qr_code_img_path', '思政APP二维码图片地址', 'varchar(255)', 'String', 'appQrCodeImgPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 16, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1151, 78, 'contact_phone', '联系电话', 'varchar(20)', 'String', 'contactPhone', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 17, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1152, 78, 'contact_email', '联系邮箱', 'varchar(50)', 'String', 'contactEmail', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 18, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1153, 78, 'contact_address', '联系地址', 'varchar(50)', 'String', 'contactAddress', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 19, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1154, 78, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 20, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1155, 78, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 21, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1156, 78, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 22, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1157, 78, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 23, 'admin', '2025-10-25 15:24:20', '', '2025-10-25 16:01:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1158, 68, 'is_required', '是否必选,0-非必选 1-必选', 'int', 'Long', 'isRequired', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, '', '2025-10-27 16:03:59', '', '2025-10-27 16:46:27'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1159, 68, 'app_id', NULL, 'bigint', 'Long', 'appId', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, '', '2025-10-27 16:45:48', '', '2025-10-27 16:46:27'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1160, 68, 'app_icon_path', '应用图标', 'varchar(255)', 'String', 'appIconPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, '', '2025-10-27 16:45:48', '', '2025-10-27 16:46:27'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1161, 68, 'app_name', '应用名称', 'varchar(255)', 'String', 'appName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, '', '2025-10-27 16:45:49', '', '2025-10-27 16:46:27'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1162, 68, 'app_desc', '应用介绍', 'varchar(255)', 'String', 'appDesc', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, '', '2025-10-27 16:45:49', '', '2025-10-27 16:46:27'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1163, 74, 'school_id', '主键', 'bigint', 'Long', 'schoolId', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, '', '2025-10-27 22:47:58', '', '2025-10-27 22:49:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1164, 74, 'school_name', '学校名称', 'varchar(255)', 'String', 'schoolName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 2, '', '2025-10-27 22:47:58', '', '2025-10-27 22:49:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1165, 74, 'logo_path', 'LOGO', 'varchar(255)', 'String', 'logoPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, '', '2025-10-27 22:47:58', '', '2025-10-27 22:49:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1166, 74, 'is_system_school', '是否为系统院校:0-否,1-是', 'int unsigned', 'String', 'isSystemSchool', '0', '0', NULL, '1', '1', '1', '1', 'EQ', NULL, '', 10, '', '2025-10-27 22:47:59', '', '2025-10-27 22:49:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1167, 79, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-29 14:18:15', '', '2025-10-29 16:12:23'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1168, 79, 'school_id', '学校ID', 'bigint', 'Long', 'schoolId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-10-29 14:18:15', '', '2025-10-29 16:12:23'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1169, 79, 'chapter_id', '章节ID', 'bigint', 'Long', 'chapterId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-10-29 14:18:15', '', '2025-10-29 16:12:23'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1170, 79, 'chapter_type', '内容类型', 'int', 'Long', 'chapterType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 4, 'admin', '2025-10-29 14:18:16', '', '2025-10-29 16:12:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1171, 79, 'content', '内容', 'mediumtext', 'String', 'content', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'editor', '', 5, 'admin', '2025-10-29 14:18:16', '', '2025-10-29 16:12:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1172, 79, 'is_del', '删除标识', 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-29 14:18:16', '', '2025-10-29 16:12:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1173, 79, 'state', '状态', 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-10-29 14:18:16', '', '2025-10-29 16:12:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1174, 79, 'remark', '备注', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 8, 'admin', '2025-10-29 14:18:16', '', '2025-10-29 16:12:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1175, 79, 'create_by', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 9, 'admin', '2025-10-29 14:18:16', '', '2025-10-29 16:12:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1176, 79, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 10, 'admin', '2025-10-29 14:18:16', '', '2025-10-29 16:12:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1177, 79, 'update_by', '更新人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2025-10-29 14:18:16', '', '2025-10-29 16:12:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1178, 79, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 12, 'admin', '2025-10-29 14:18:16', '', '2025-10-29 16:12:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1179, 80, 'log_id', '主键', 'bigint', 'Long', 'logId', '1', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-29 15:17:38', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1180, 80, 'operation_time', '操作时间', 'datetime', 'Date', 'operationTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 2, 'admin', '2025-10-29 15:17:38', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1181, 80, 'user_name', '操作用户', 'varchar(255)', 'String', 'userName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2025-10-29 15:17:38', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1182, 80, 'user_id', '用户ID', 'bigint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-10-29 15:17:38', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1183, 80, 'user_role', '用户角色', 'varchar(255)', 'String', 'userRole', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-29 15:17:38', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1184, 80, 'module', '操作模块', 'varchar(255)', 'String', 'module', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-10-29 15:17:38', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1185, 80, 'operation_type', '操作类型', 'smallint', 'Integer', 'operationType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 7, 'admin', '2025-10-29 15:17:38', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1186, 80, 'content', '操作内容', 'varchar(255)', 'String', 'content', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'editor', '', 8, 'admin', '2025-10-29 15:17:38', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1187, 80, 'ip', '操作IP', 'varchar(20)', 'String', 'ip', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-10-29 15:17:38', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1188, 80, 'ip_region', 'IP属地', 'varchar(255)', 'String', 'ipRegion', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-10-29 15:17:39', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1189, 80, 'status', '操作状态:0-失败,1-成功', 'smallint', 'Integer', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 11, 'admin', '2025-10-29 15:17:39', '', '2025-10-29 15:34:53'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1190, 80, 'duration', '操作耗时', 'varchar(255)', 'String', 'duration', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-10-29 15:17:39', '', '2025-10-29 15:34:54'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1191, 80, 'userAgent', '操作设备', 'varchar(255)', 'String', 'userAgent', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2025-10-29 15:17:39', '', '2025-10-29 15:34:54'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1192, 80, 'args', '操作参数', 'varchar(255)', 'String', 'args', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2025-10-29 15:17:39', '', '2025-10-29 15:34:54'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1193, 80, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 15, 'admin', '2025-10-29 15:17:39', '', '2025-10-29 15:34:54'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1194, 80, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 16, 'admin', '2025-10-29 15:17:39', '', '2025-10-29 15:34:54'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1195, 80, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 17, 'admin', '2025-10-29 15:17:39', '', '2025-10-29 15:34:54'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1196, 80, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 18, 'admin', '2025-10-29 15:17:39', '', '2025-10-29 15:34:54'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1197, 81, 'log_id', '日志ID', 'bigint', 'Long', 'logId', '1', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-10-30 10:38:11', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1198, 81, 'sch_id', '院校ID', 'bigint', 'Long', 'schId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-10-30 10:38:11', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1199, 81, 'log_time', '日志时间', 'datetime', 'Date', 'logTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 3, 'admin', '2025-10-30 10:38:11', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1200, 81, 'log_level', '日志级别:1-error,2-warning', 'smallint', 'Long', 'logLevel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-10-30 10:38:11', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1201, 81, 'module', '模块名称', 'varchar(255)', 'String', 'module', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-10-30 10:38:11', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1202, 81, 'user_name', '操作用户名称', 'varchar(255)', 'String', 'userName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 6, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1203, 81, 'user_id', '操作用户ID', 'smallint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1204, 81, 'user_role', '用户角色名称', 'varchar(255)', 'String', 'userRole', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1205, 81, 'content', '日志内容', 'varchar(255)', 'String', 'content', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'editor', '', 9, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1206, 81, 'status', '处理状态:0-未处理,1-已处理', 'smallint', 'Long', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 10, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1207, 81, 'error_stack', '错误堆栈', 'varchar(300)', 'String', 'errorStack', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1208, 81, 'ip', 'IP地址', 'varchar(255)', 'String', 'ip', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1209, 81, 'ip_region', 'IP属地', 'varchar(255)', 'String', 'ipRegion', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:21'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1210, 81, 'remark', '处理备注', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 14, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:22'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1211, 81, 'processing_record', '处理记录', 'varchar(255)', 'String', 'processingRecord', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:22'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1212, 81, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 16, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:22'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1213, 81, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 17, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:22'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1214, 81, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 18, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:22'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1215, 81, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 19, 'admin', '2025-10-30 10:38:12', '', '2025-10-30 10:50:22'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1216, 82, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 12:16:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1217, 82, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 12:16:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1218, 82, 'name', '分类名称', 'varchar(50)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 12:16:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1219, 82, 'icon_path', '分类图标', 'varchar(255)', 'String', 'iconPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 12:16:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1220, 82, 'desc', '分类描述', 'varchar(255)', 'String', 'desc', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 5, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 12:16:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1221, 82, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 6, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 12:16:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1222, 82, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 7, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 12:16:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1223, 82, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 8, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 12:16:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1224, 82, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 9, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 12:16:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1225, 83, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 14:12:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1226, 83, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-03 12:02:00', '', '2025-11-03 14:12:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1227, 83, 'name', '学科门类名称', 'varchar(50)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 14:12:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1228, 83, 'icon_path', '图标', 'varchar(255)', 'String', 'iconPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 14:12:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1229, 83, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 5, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 14:12:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1230, 83, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 6, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 14:12:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1231, 83, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 7, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 14:12:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1232, 83, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 8, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 14:12:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1233, 84, 'id', '主键', 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 12:20:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1234, 84, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 12:20:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1235, 84, 'name', '标签名称', 'varchar(50)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 12:20:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1236, 84, 'icon_path', '图标', 'varchar(255)', 'String', 'iconPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 12:20:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1237, 84, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 5, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 12:20:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1238, 84, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 6, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 12:20:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1239, 84, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 7, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 12:20:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1240, 84, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 8, 'admin', '2025-11-03 12:02:01', '', '2025-11-03 12:20:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1241, 85, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-03 12:02:02', '', '2025-11-03 14:12:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1242, 85, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-03 12:02:02', '', '2025-11-03 14:12:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1243, 85, 'name', '类型名称', 'varchar(50)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2025-11-03 12:02:02', '', '2025-11-03 14:12:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1244, 85, 'icon_path', '图标', 'varchar(255)', 'String', 'iconPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-03 12:02:02', '', '2025-11-03 14:12:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1245, 85, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 5, 'admin', '2025-11-03 12:02:02', '', '2025-11-03 14:12:10'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1246, 85, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 6, 'admin', '2025-11-03 12:02:02', '', '2025-11-03 14:12:10'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1247, 85, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 7, 'admin', '2025-11-03 12:02:02', '', '2025-11-03 14:12:10'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1248, 85, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 8, 'admin', '2025-11-03 12:02:02', '', '2025-11-03 14:12:10'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1249, 86, 'id', '', 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-04 12:11:15', '', '2025-11-04 12:40:51'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1250, 86, 'name', '资源名称', 'varchar(255)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 2, 'admin', '2025-11-04 12:11:15', '', '2025-11-04 12:40:51'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1251, 86, 'author_id', '作者ID', 'bigint', 'Long', 'authorId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:51'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1252, 86, 'author_name', '作者名称', 'varchar(255)', 'String', 'authorName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 4, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:51'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1253, 86, 'source', '来源:1-系统内置、2-自主创作、3-网络', 'varchar(255)', 'String', 'source', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:51'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1255, 86, 'cover_img_path', '缩略图', 'varchar(255)', 'String', 'coverImgPath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1256, 86, 'description', '资源简介', 'varchar(255)', 'String', 'description', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1257, 86, 'view_count', '观看数量', 'bigint', 'Long', 'viewCount', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1258, 86, 'down_count', '下载数量', 'bigint', 'Long', 'downCount', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1259, 86, 'file_size', '文件大小', 'varchar(255)', 'String', 'fileSize', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1260, 86, 'file_path', '资源文件路径', 'varchar(500)', 'String', 'filePath', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 12, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1261, 86, 'category_id', '资源分类ID', 'bigint', 'Long', 'categoryId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1262, 86, 'subject_id', '学科门类ID', 'bigint', 'Long', 'subjectId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1263, 86, 'type_id', '资源类型ID', 'bigint', 'Long', 'typeId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1264, 86, 'stage', '学段:1-大学,2-高中,3-初中,4-小学,5-其他', 'smallint', 'Long', 'stage', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 16, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1265, 86, 'tag_ids', '资源标签逗号分隔ID', 'varchar(255)', 'String', 'tagIds', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 17, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1266, 86, 'premium_types', '精品资源类型逗号分隔串:1-精品资源,2- 精品课程,3-示范资源,4-示范课程', 'varchar(255)', 'String', 'premiumTypes', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 18, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1267, 86, 'approval_state', '审批状态:0-草稿,1-待审批,2-已通过,3-已驳回,4-审批通过', 'smallint', 'Long', 'approvalState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 19, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1268, 86, 'state', '资源状态:1-启用,0-禁用', 'smallint', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 20, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1269, 86, 'is_del', '删除标识:0-未删,1-已删', 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 21, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1270, 86, 'create_by', '', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 22, 'admin', '2025-11-04 12:11:16', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1271, 86, 'create_time', '', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 23, 'admin', '2025-11-04 12:11:17', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1272, 86, 'update_by', '', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 24, 'admin', '2025-11-04 12:11:17', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1273, 86, 'update_time', '', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 25, 'admin', '2025-11-04 12:11:17', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1274, 86, 'source_url', '资源网址,当来源于网络时此字段可用', 'varchar(255)', 'String', 'sourceUrl', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, '', '2025-11-04 12:40:44', '', '2025-11-04 12:40:52'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1275, 75, 'code', '学号', 'varchar(255)', 'String', 'code', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1276, 75, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1277, 75, 'dept_id', '班级ID', 'bigint', 'Long', 'deptId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1278, 75, 'user_name', '学生名称', 'varchar(30)', 'String', 'userName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 5, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1279, 75, 'user_code_id', '学生证件号码', 'varchar(64)', 'String', 'userCodeId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1280, 75, 'phonenumber', '手机号码', 'varchar(11)', 'String', 'phonenumber', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1281, 75, 'sex', '学生性别(0男 1女 2未知)', 'char(1)', 'String', 'sex', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 9, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1282, 75, 'avatar', '头像地址', 'varchar(100)', 'String', 'avatar', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1283, 75, 'status', '账号状态(0正常 1停用)', 'char(1)', 'String', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 12, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1284, 75, 'del_flag', '删除标志(0代表存在 2代表删除)', 'char(1)', 'String', 'delFlag', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 13, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1285, 75, 'login_ip', '登录地址', 'varchar(128)', 'String', 'loginIp', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 14, '', '2025-11-05 15:01:20', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1286, 75, 'login_date', '最后登录时间', 'datetime', 'Date', 'loginDate', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 15, '', '2025-11-05 15:01:21', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1287, 75, 'pwd_update_date', '密码最后更新时间', 'datetime', 'Date', 'pwdUpdateDate', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 16, '', '2025-11-05 15:01:21', '', '2025-11-05 15:03:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1288, 87, 'id', '主键', 'int', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-08 15:00:52', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1289, 87, 'sch_id', '学校主键', 'int', 'Long', 'schId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-08 15:00:52', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1290, 87, 'exam_title', '试卷标题', 'varchar(255)', 'String', 'examTitle', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-08 15:00:52', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1292, 87, 'exam_rank', '试卷级别', 'int', 'Long', 'examRank', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-11-08 15:00:52', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1293, 87, 'single_num', '单选题数量', 'int', 'Long', 'singleNum', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-11-08 15:00:52', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1294, 87, 'single_mark', '单选题分数', 'int', 'Long', 'singleMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-11-08 15:00:52', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1295, 87, 'multiple_num', '多选题数量', 'int', 'Long', 'multipleNum', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-11-08 15:00:52', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1296, 87, 'multiple_mark', '多选题分数', 'int', 'Long', 'multipleMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-11-08 15:00:52', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1297, 87, 'estimate_num', '判断题数量', 'int', 'Long', 'estimateNum', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-11-08 15:00:52', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1298, 87, 'estimate_mark', '判断题分数', 'int', 'Long', 'estimateMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1299, 87, 'full_mark', '试卷分数', 'int', 'Long', 'fullMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1300, 87, 'pass_mark', '通过分数', 'int', 'Long', 'passMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1301, 87, 'use_number', '答题次数', 'int', 'Long', 'useNumber', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1302, 87, 'status', '试卷状态(0草稿、100发布)', 'int', 'Long', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 15, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1303, 87, 'exam_time', '考试时长', 'int', 'Long', 'examTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 16, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1304, 87, 'create_by', '创建人', 'varchar(64)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 17, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1305, 87, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 18, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1306, 87, 'update_by', '修改人', 'varchar(64)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 19, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1307, 87, 'update_time', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 20, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1308, 87, 'remark', '备注', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 21, 'admin', '2025-11-08 15:00:53', '', '2025-11-08 15:05:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1309, 88, 'exam_id', '试卷主键', 'int', 'Long', 'examId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2025-11-08 15:00:53', '', '2025-11-10 10:09:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1310, 88, 'question_id', '问题主键', 'int', 'Long', 'questionId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-08 15:00:53', '', '2025-11-10 10:09:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1311, 88, 'question_marks', '问题分数', 'int', 'Long', 'questionMarks', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-08 15:00:53', '', '2025-11-10 10:09:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1312, 88, 'question_sort_by', '问题排序', 'int', 'Long', 'questionSortBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-08 15:00:53', '', '2025-11-10 10:09:24'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1313, 89, 'id', '主键', 'int', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:58'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1314, 89, 'sch_id', '学校主键', 'int', 'Long', 'schId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:58'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1315, 89, 'question_desc', '问题描述', 'varchar(255)', 'String', 'questionDesc', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:58'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1316, 89, 'question_type', '问题类型', 'int', 'Long', 'questionType', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'select', '', 4, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:58'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1317, 89, 'question_rank', '问题级别', 'int', 'Long', 'questionRank', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1319, 89, 'question_answer', '问题答案', 'varchar(128)', 'String', 'questionAnswer', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1320, 89, 'question_analysis', '问题解析', 'varchar(1024)', 'String', 'questionAnalysis', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 8, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1321, 89, 'question_knowledge', '问题知识', 'varchar(1024)', 'String', 'questionKnowledge', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 9, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1322, 89, 'question_score', '问题分数', 'int unsigned', 'String', 'questionScore', '0', '0', NULL, '1', '1', '1', '1', 'EQ', NULL, '', 10, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1323, 89, 'use_number', '使用次数', 'int', 'Long', 'useNumber', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1324, 89, 'status', '是否删除', 'int', 'Long', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 12, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1325, 89, 'create_by', '创建人', 'varchar(64)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 13, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1326, 89, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 14, 'admin', '2025-11-08 15:00:54', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1327, 89, 'update_by', '修改人', 'varchar(64)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 15, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1328, 89, 'update_time', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 16, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1329, 89, 'remark', '备注', 'varchar(1024)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'textarea', '', 17, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1330, 90, 'id', '主键', 'int', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:10:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1331, 90, 'question_id', '问题主键', 'int', 'Long', 'questionId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:10:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1332, 90, 'option', '答案选项', 'varchar(10)', 'String', 'option', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:10:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1333, 90, 'description', '答案描述', 'varchar(255)', 'String', 'description', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:10:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1334, 90, 'is_ok', '是否正确', 'int', 'Long', 'isOk', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:10:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1335, 90, 'create_by', '创建人', 'varchar(64)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 6, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:10:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1336, 90, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 7, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:10:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1337, 90, 'update_by', '修改人', 'varchar(64)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 8, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:10:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1338, 90, 'update_time', '修改日期', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 9, 'admin', '2025-11-08 15:00:55', '', '2025-11-10 10:10:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1339, 90, 'remark', '备注', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 10, 'admin', '2025-11-08 15:00:56', '', '2025-11-10 10:10:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1340, 87, 'exam_course_id', '关联课程', 'int', 'Long', 'examCourseId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, '', '2025-11-08 15:02:07', '', '2025-11-08 15:05:16'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1341, 89, 'question_course_id', '关联课程', 'int', 'Long', 'questionCourseId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, '', '2025-11-08 15:02:12', '', '2025-11-10 10:09:59'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1342, 91, 'id', '', 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-08 16:56:44', '', '2025-11-08 17:04:30'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1343, 91, 'chapter_content_id', '内容ID', 'bigint', 'Long', 'chapterContentId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-08 16:56:44', '', '2025-11-08 17:04:30'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1344, 91, 'resource_id', '资源ID', 'bigint', 'Long', 'resourceId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-08 16:56:44', '', '2025-11-08 17:04:30'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1345, 91, 'question_id', '试题ID', 'bigint', 'Long', 'questionId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-08 16:56:44', '', '2025-11-08 17:04:30'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1380, 94, 'id', '主键', 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-12 14:46:21', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1381, 94, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-12 14:46:21', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1382, 94, 'title', '标题', 'varchar(255)', 'String', 'title', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-12 14:46:21', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1383, 94, 'content', '消息内容', 'text', 'String', 'content', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'editor', '', 4, 'admin', '2025-11-12 14:46:21', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1384, 94, 'msg_type', '消息类型:1-系统消息;2-服务消息;3-通知公告', 'smallint', 'Integer', 'msgType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 5, 'admin', '2025-11-12 14:46:21', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1385, 94, 'publish_time', '发布时间', 'datetime', 'Date', 'publishTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 6, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1386, 94, 'send_type', '发送类型:1-即时;2-指定时间', 'smallint', 'Integer', 'sendType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 7, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1387, 94, 'send_time', '发送时间', 'datetime', 'Date', 'sendTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 8, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1388, 94, 'send_scope', '发送范围:1-全校师生;2-全校老师;3-全校学生', 'smallint', 'Integer', 'sendScope', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1389, 94, 'msg_state', '消息状态:0-草稿;1-已发布', 'smallint', 'Integer', 'msgState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1390, 94, 'send_state', '发送状态:0-未发送;1-已发送', 'smallint', 'Integer', 'sendState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1391, 94, 'is_del', '删除标识', 'int', 'Integer', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1392, 94, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 13, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1393, 94, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 14, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1394, 94, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 15, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:33'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1395, 94, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 16, 'admin', '2025-11-12 14:46:22', '', '2025-11-12 16:27:34'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1396, 95, 'id', NULL, 'bigint', 'Long', 'id', '1', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1397, 95, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1398, 95, 'course_id', '课程ID', 'bigint', 'Long', 'courseId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1399, 95, 'course_name', '课程名称', 'varchar(512)', 'String', 'courseName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'textarea', '', 4, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1400, 95, 'academic_id', '学期ID', 'bigint', 'Long', 'academicId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1401, 95, 'address', '上课地点', 'varchar(512)', 'String', 'address', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 6, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1402, 95, 'start_date', '开始时间', 'datetime', 'Date', 'startDate', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 7, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1403, 95, 'end_date', '结束时间', 'datetime', 'Date', 'endDate', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 8, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1404, 95, 'class_type', '课程类型1-必修2-选修3-实践', 'int', 'Long', 'classType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 9, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1405, 95, 'status', '1-进行中2-未开始3-已结束', 'int', 'Long', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 10, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1406, 95, 'is_del', '删除标识', 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1407, 95, 'state', '状态', 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:44'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1408, 95, 'remark', '备注', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 13, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1409, 95, 'create_by', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 14, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1410, 95, 'create_time', '创建日期', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 15, '王五', '2025-11-13 14:30:33', '', '2025-11-13 14:35:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1411, 95, 'update_by', '更新人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 16, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:35:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1412, 95, 'update_time', '更新日期', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 17, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:35:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1413, 96, 'id', NULL, 'bigint', 'Long', 'id', '1', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:36:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1414, 96, 'class_sch_id', '上课ID', 'bigint', 'Long', 'classSchId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:36:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1415, 96, 'org_id', '班级ID', 'bigint', 'Long', 'orgId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:36:40'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1416, 97, 'id', NULL, 'bigint', 'Long', 'id', '1', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:37:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1417, 97, 'class_sch_id', '上课ID', 'bigint', 'Long', 'classSchId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:37:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1418, 97, 'user_id', '老师ID', 'bigint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:37:28'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1419, 98, 'id', NULL, 'bigint', 'Long', 'id', '1', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:38:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1420, 98, 'class_sch_id', '上课ID', 'bigint', 'Long', 'classSchId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:38:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1421, 98, 'week_info', '周几1-周一2-周二', 'int', 'Long', 'weekInfo', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:38:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1422, 98, 'start_time', '开始时间', 'time', 'Date', 'startTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 4, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:38:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1423, 98, 'end_time', '结束时间', 'time', 'Date', 'endTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 5, '王五', '2025-11-13 14:30:34', '', '2025-11-13 14:38:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1424, 99, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-14 14:18:32', '', '2025-11-14 14:26:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1425, 99, 'message_id', '消息表ID', 'bigint', 'Long', 'messageId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-14 14:18:32', '', '2025-11-14 14:26:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1426, 99, 'user_type', '用户类型:1-教师;2-学生', 'smallint', 'Integer', 'userType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 3, 'admin', '2025-11-14 14:18:32', '', '2025-11-14 14:26:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1427, 99, 'user_id', '老师ID&学生ID', 'bigint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-14 14:18:32', '', '2025-11-14 14:26:03'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1428, 99, 'read_state', '状态:0-未读;1-已读', 'smallint', 'Integer', 'readState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-11-14 14:18:32', '', '2025-11-14 14:26:04'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1429, 99, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 6, 'admin', '2025-11-14 14:18:32', '', '2025-11-14 14:26:04'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1430, 99, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 7, 'admin', '2025-11-14 14:18:32', '', '2025-11-14 14:26:04'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1431, 99, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 8, 'admin', '2025-11-14 14:18:32', '', '2025-11-14 14:26:04'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1432, 99, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 9, 'admin', '2025-11-14 14:18:32', '', '2025-11-14 14:26:04'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1433, 100, 'id', 'ID', 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1434, 100, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1435, 100, 'exam_title', '考试名称', 'varchar(64)', 'String', 'examTitle', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:45'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1436, 100, 'exam_info_id', '考试试卷', 'bigint', 'Long', 'examInfoId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1437, 100, 'exam_start_time', '考试开始时间', 'datetime', 'Date', 'examStartTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 5, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1438, 100, 'exam_end_time', '考试结束时间', 'datetime', 'Date', 'examEndTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 6, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1439, 100, 'exam_address', '考试地址', 'varchar(64)', 'String', 'examAddress', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1440, 100, 'status', '试卷状态(0草稿、100发布)', 'int', 'Long', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 8, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1441, 100, 'create_by', '创建人', 'varchar(64)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 9, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1442, 100, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 10, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1443, 100, 'update_by', '修改人', 'varchar(64)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 11, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1444, 100, 'update_time', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 12, 'admin', '2025-11-15 14:59:20', '', '2025-11-15 15:08:46'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1445, 100, 'remark', '备注', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 13, 'admin', '2025-11-15 14:59:21', '', '2025-11-15 15:08:47'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1466, 103, 'id', 'ID', 'int', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-15 14:59:22', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1467, 103, 'exam_student_id', '学生考试ID', 'int', 'Long', 'examStudentId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-15 14:59:22', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1468, 103, 'question_id', '问题主键', 'int', 'Long', 'questionId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-15 14:59:22', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1469, 103, 'question_title', '问题描述', 'varchar(128)', 'String', 'questionTitle', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-15 14:59:22', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1470, 103, 'question_type', '问题类型', 'int', 'Long', 'questionType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 5, 'admin', '2025-11-15 14:59:22', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1471, 103, 'question_option', '问题选项', 'text', 'String', 'questionOption', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 6, 'admin', '2025-11-15 14:59:23', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1472, 103, 'student_answer', '学生答案', 'varchar(255)', 'String', 'studentAnswer', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-11-15 14:59:23', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1473, 103, 'question_answer', '问题答案', 'varchar(255)', 'String', 'questionAnswer', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-11-15 14:59:23', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1474, 103, 'use_result', '答题结果', 'varchar(10)', 'String', 'useResult', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-11-15 14:59:23', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1475, 103, 'mark', '问题分数', 'varchar(10)', 'String', 'mark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-11-15 14:59:23', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1476, 103, 'use_mark', '答题得分', 'varchar(10)', 'String', 'useMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-11-15 14:59:23', '', '2025-11-15 15:44:15'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1477, 104, 'plan_id', '安排ID', 'bigint', 'Long', 'planId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 1, 'admin', '2025-11-15 15:03:39', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1478, 104, 'class_id', '班级ID', 'bigint', 'Long', 'classId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-15 15:03:39', '', NULL); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1479, 105, 'id', 'ID', 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1480, 105, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1481, 105, 'plan_id', '安排ID', 'bigint', 'Long', 'planId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1482, 105, 'student_id', '学生ID', 'bigint', 'Long', 'studentId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1483, 105, 'exam_full_mark', '试卷分数', 'int', 'Long', 'examFullMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1484, 105, 'exam_pass_mark', '通过分数', 'int', 'Long', 'examPassMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1485, 105, 'student_mark', '用户分数', 'int', 'Long', 'studentMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1486, 105, 'start_exam_time', '考试时间', 'datetime', 'Date', 'startExamTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 8, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1487, 105, 'end_exam_time', '交卷时间', 'datetime', 'Date', 'endExamTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 9, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1488, 105, 'exam_status', '考试状态', 'varchar(10)', 'String', 'examStatus', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 10, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1489, 105, 'cheating_num', '作弊次数', 'varchar(10)', 'String', 'cheatingNum', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1490, 105, 'use_times', '答题耗时', 'varchar(32)', 'String', 'useTimes', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1491, 105, 'status', '状态标识', 'varchar(10)', 'String', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 13, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1492, 105, 'create_by', '创建人', 'varchar(64)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 14, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1493, 105, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 15, 'admin', '2025-11-15 15:07:02', '', '2025-11-15 15:08:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1494, 105, 'update_by', '修改人', 'varchar(64)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 16, 'admin', '2025-11-15 15:07:03', '', '2025-11-15 15:08:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1495, 105, 'update_time', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 17, 'admin', '2025-11-15 15:07:03', '', '2025-11-15 15:08:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1496, 105, 'remark', '备注', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 18, 'admin', '2025-11-15 15:07:03', '', '2025-11-15 15:08:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1497, 106, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, '1', '1', 'EQ', 'input', '', 1, 'admin', '2025-11-24 17:11:05', '', '2025-11-24 17:14:01'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1498, 106, 'name', '待办名称', 'varchar(255)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 2, 'admin', '2025-11-24 17:11:05', '', '2025-11-24 17:14:01'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1499, 106, 'user_id', '用户ID', 'bigint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-11-24 17:11:05', '', '2025-11-24 17:14:01'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1500, 107, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1501, 107, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1502, 107, 'title', '作业名称', 'varchar(512)', 'String', 'title', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 3, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1503, 107, 'instructions', '作业要求', 'varchar(255)', 'String', 'instructions', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1504, 107, 'score', '作业成绩', 'double', 'Long', 'score', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1505, 107, 'status', '状态0-草稿1-状态', 'int', 'Long', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 6, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1506, 107, 'single_num', '单选题数量', 'int', 'Long', 'singleNum', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1507, 107, 'single_mark', '单选题分数', 'int', 'Long', 'singleMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1508, 107, 'multiple_num', '多选题数量', 'int', 'Long', 'multipleNum', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1509, 107, 'multiple_mark', '多选题分数', 'int', 'Long', 'multipleMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1510, 107, 'estimate_num', '判断题数量', 'int', 'Long', 'estimateNum', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1511, 107, 'estimate_mark', '判断题分数', 'int', 'Long', 'estimateMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2025-12-01 15:17:19', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1512, 107, 'is_del', NULL, 'int', 'Long', 'isDel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1513, 107, 'state', NULL, 'int', 'Long', 'state', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1514, 107, 'remark', NULL, 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 15, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1515, 107, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 16, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1516, 107, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 17, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:19:25'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1517, 107, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 18, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:19:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1518, 107, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 19, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:19:26'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1519, 108, 'id', 'ID', 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:20:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1520, 108, 'sch_id', '学校ID', 'bigint', 'Long', 'schId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:20:17'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1521, 108, 'homework_id', '作业ID', 'bigint', 'Long', 'homeworkId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1522, 108, 'student_id', '学生ID', 'bigint', 'Long', 'studentId', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1523, 108, 'ull_mark', '试卷分数', 'int', 'Long', 'ullMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1524, 108, 'student_mark', '用户分数', 'int', 'Long', 'studentMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1525, 108, 'start_exam_time', '考试时间', 'datetime', 'Date', 'startExamTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 7, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1526, 108, 'end_exam_time', '交卷时间', 'datetime', 'Date', 'endExamTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 8, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1527, 108, 'exam_status', '考试状态1-未进行2-进行中 3-已提交', 'varchar(10)', 'String', 'examStatus', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 9, 'admin', '2025-12-01 15:17:20', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1528, 108, 'cheating_num', '作弊次数', 'varchar(10)', 'String', 'cheatingNum', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1529, 108, 'use_times', '答题耗时', 'varchar(32)', 'String', 'useTimes', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1530, 108, 'status', '状态标识', 'varchar(10)', 'String', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 12, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1531, 108, 'create_by', '创建人', 'varchar(64)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 13, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1532, 108, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 14, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1533, 108, 'update_by', '修改人', 'varchar(64)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 15, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1534, 108, 'update_time', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 16, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1535, 108, 'remark', '备注', 'varchar(255)', 'String', 'remark', '0', '0', NULL, '1', '1', '1', NULL, 'EQ', 'input', '', 17, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:20:18'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1536, 109, 'id', 'ID', 'int', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:21:08'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1537, 109, 'homework_student_id', '学生作业ID', 'int', 'Long', 'homeworkStudentId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:21:08'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1538, 109, 'question_id', '问题主键', 'int', 'Long', 'questionId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:21:08'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1539, 109, 'student_answer', '学生答案', 'varchar(255)', 'String', 'studentAnswer', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:21:08'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1540, 109, 'use_result', '答题结果', 'varchar(10)', 'String', 'useResult', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:21:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1541, 109, 'use_mark', '答题得分', 'varchar(10)', 'String', 'useMark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2025-12-01 15:17:21', '', '2025-12-01 15:21:09'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1542, 110, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-12-01 15:23:06', '', '2025-12-01 15:24:31'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1543, 110, 'homework_id', '作业ID', 'bigint', 'Long', 'homeworkId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-12-01 15:23:06', '', '2025-12-01 15:24:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1544, 110, 'class_id', '班级ID', 'bigint', 'Long', 'classId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-12-01 15:23:06', '', '2025-12-01 15:24:32'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1545, 111, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-12-01 15:23:06', '', '2025-12-01 15:24:57'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1546, 111, 'homework_id', '作业ID', 'bigint', 'Long', 'homeworkId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2025-12-01 15:23:06', '', '2025-12-01 15:24:57'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1547, 111, 'question_id', '问题主键', 'int', 'Long', 'questionId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2025-12-01 15:23:06', '', '2025-12-01 15:24:57'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1548, 111, 'question_marks', '问题分数', 'int', 'Long', 'questionMarks', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-12-01 15:23:06', '', '2025-12-01 15:24:57'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1549, 111, 'question_sort_by', '问题排序', 'int', 'Long', 'questionSortBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2025-12-01 15:23:06', '', '2025-12-01 15:24:57'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1550, 112, 'id', NULL, 'bigint', 'Long', 'id', '1', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2025-12-02 16:18:17', '', '2025-12-02 16:20:42'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1551, 112, 'name', '名字', 'varchar(255)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 2, 'admin', '2025-12-02 16:18:17', '', '2025-12-02 16:20:42'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1552, 112, 'path', '文件路径', 'varchar(500)', 'String', 'path', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 3, 'admin', '2025-12-02 16:18:17', '', '2025-12-02 16:20:42'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1553, 112, 'size', '文件大小', 'bigint', 'Long', 'size', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2025-12-02 16:18:17', '', '2025-12-02 16:20:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1554, 112, 'status', '备份状态:1-成功;0-失败', 'smallint', 'Integer', 'status', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'radio', '', 5, 'admin', '2025-12-02 16:18:17', '', '2025-12-02 16:20:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1555, 112, 'create_by', NULL, 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 6, 'admin', '2025-12-02 16:18:17', '', '2025-12-02 16:20:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1556, 112, 'create_time', NULL, 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', NULL, NULL, NULL, 'EQ', 'datetime', '', 7, 'admin', '2025-12-02 16:18:17', '', '2025-12-02 16:20:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1557, 112, 'update_by', NULL, 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'input', '', 8, 'admin', '2025-12-02 16:18:17', '', '2025-12-02 16:20:43'); INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1558, 112, 'update_time', NULL, 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', NULL, NULL, 'EQ', 'datetime', '', 9, 'admin', '2025-12-02 16:18:17', '', '2025-12-02 16:20:43'); COMMIT; -- ---------------------------- -- Table structure for qrtz_blob_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_blob_triggers`; CREATE TABLE `qrtz_blob_triggers` ( `sched_name` varchar(120) NOT NULL COMMENT '调度名称', `trigger_name` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', `trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', `blob_data` blob COMMENT '存放持久化Trigger对象', PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`), CONSTRAINT `qrtz_blob_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Blob类型的触发器表'; -- ---------------------------- -- Records of qrtz_blob_triggers -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for qrtz_calendars -- ---------------------------- DROP TABLE IF EXISTS `qrtz_calendars`; CREATE TABLE `qrtz_calendars` ( `sched_name` varchar(120) NOT NULL COMMENT '调度名称', `calendar_name` varchar(200) NOT NULL COMMENT '日历名称', `calendar` blob NOT NULL COMMENT '存放持久化calendar对象', PRIMARY KEY (`sched_name`,`calendar_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='日历信息表'; -- ---------------------------- -- Records of qrtz_calendars -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for qrtz_cron_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_cron_triggers`; CREATE TABLE `qrtz_cron_triggers` ( `sched_name` varchar(120) NOT NULL COMMENT '调度名称', `trigger_name` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', `trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', `cron_expression` varchar(200) NOT NULL COMMENT 'cron表达式', `time_zone_id` varchar(80) DEFAULT NULL COMMENT '时区', PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`), CONSTRAINT `qrtz_cron_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Cron类型的触发器表'; -- ---------------------------- -- Records of qrtz_cron_triggers -- ---------------------------- BEGIN; INSERT INTO `qrtz_cron_triggers` (`sched_name`, `trigger_name`, `trigger_group`, `cron_expression`, `time_zone_id`) VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME100', 'SYSTEM', '0 */5 * * * ?', 'Asia/Shanghai'); INSERT INTO `qrtz_cron_triggers` (`sched_name`, `trigger_name`, `trigger_group`, `cron_expression`, `time_zone_id`) VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME101', 'SYSTEM', '0 1 0 * * ?', 'Asia/Shanghai'); INSERT INTO `qrtz_cron_triggers` (`sched_name`, `trigger_name`, `trigger_group`, `cron_expression`, `time_zone_id`) VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME102', 'SYSTEM', '0 0 1 * * ?', 'Asia/Shanghai'); COMMIT; -- ---------------------------- -- Table structure for qrtz_fired_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_fired_triggers`; CREATE TABLE `qrtz_fired_triggers` ( `sched_name` varchar(120) NOT NULL COMMENT '调度名称', `entry_id` varchar(95) NOT NULL COMMENT '调度器实例id', `trigger_name` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', `trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', `instance_name` varchar(200) NOT NULL COMMENT '调度器实例名', `fired_time` bigint NOT NULL COMMENT '触发的时间', `sched_time` bigint NOT NULL COMMENT '定时器制定的时间', `priority` int NOT NULL COMMENT '优先级', `state` varchar(16) NOT NULL COMMENT '状态', `job_name` varchar(200) DEFAULT NULL COMMENT '任务名称', `job_group` varchar(200) DEFAULT NULL COMMENT '任务组名', `is_nonconcurrent` varchar(1) DEFAULT NULL COMMENT '是否并发', `requests_recovery` varchar(1) DEFAULT NULL COMMENT '是否接受恢复执行', PRIMARY KEY (`sched_name`,`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='已触发的触发器表'; -- ---------------------------- -- Records of qrtz_fired_triggers -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for qrtz_job_details -- ---------------------------- DROP TABLE IF EXISTS `qrtz_job_details`; CREATE TABLE `qrtz_job_details` ( `sched_name` varchar(120) NOT NULL COMMENT '调度名称', `job_name` varchar(200) NOT NULL COMMENT '任务名称', `job_group` varchar(200) NOT NULL COMMENT '任务组名', `description` varchar(250) DEFAULT NULL COMMENT '相关介绍', `job_class_name` varchar(250) NOT NULL COMMENT '执行任务类名称', `is_durable` varchar(1) NOT NULL COMMENT '是否持久化', `is_nonconcurrent` varchar(1) NOT NULL COMMENT '是否并发', `is_update_data` varchar(1) NOT NULL COMMENT '是否更新数据', `requests_recovery` varchar(1) NOT NULL COMMENT '是否接受恢复执行', `job_data` blob COMMENT '存放持久化job对象', PRIMARY KEY (`sched_name`,`job_name`,`job_group`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务详细信息表'; -- ---------------------------- -- Records of qrtz_job_details -- ---------------------------- BEGIN; INSERT INTO `qrtz_job_details` (`sched_name`, `job_name`, `job_group`, `description`, `job_class_name`, `is_durable`, `is_nonconcurrent`, `is_update_data`, `requests_recovery`, `job_data`) VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME100', 'SYSTEM', NULL, 'com.study.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E73747564792E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E73747564792E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E74697479000000000000000102000A4C0008637265617465427971007E00094C00106372656174654279557365724E616D6571007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C00076B6579776F726471007E00094C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0009736F7572636556616C71007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E707372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000019A81AB9CB8787070740000707070707400013174000D30202A2F35202A202A202A203F74001B496E666F726D6174696F6E5461736B2E73656E644D65737361676574000653595354454D7372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000006474002CE7B3BBE7BB9FE6B688E681AF26E9809AE79FA5E585ACE5918A26E783ADE782B9E5AE9AE697B6E58F91E9808174000131740001307800); INSERT INTO `qrtz_job_details` (`sched_name`, `job_name`, `job_group`, `description`, `job_class_name`, `is_durable`, `is_nonconcurrent`, `is_update_data`, `requests_recovery`, `job_data`) VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME101', 'SYSTEM', NULL, 'com.study.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E73747564792E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E73747564792E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E74697479000000000000000102000A4C0008637265617465427971007E00094C00106372656174654279557365724E616D6571007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C00076B6579776F726471007E00094C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0009736F7572636556616C71007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E707372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000019A854C8580787070740000707070707400013174000B3020312030202A202A203F74002B42617365436C6173735363685461736B2E72656672657368436C6173735363686564756C6553746174757374000653595354454D7372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000006574001EE4B88AE8AFBEE4BFA1E681AFE78AB6E68081E5AE9AE697B6E588B7E696B074000131740001317800); INSERT INTO `qrtz_job_details` (`sched_name`, `job_name`, `job_group`, `description`, `job_class_name`, `is_durable`, `is_nonconcurrent`, `is_update_data`, `requests_recovery`, `job_data`) VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME102', 'SYSTEM', NULL, 'com.study.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E73747564792E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E73747564792E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E74697479000000000000000102000A4C0008637265617465427971007E00094C00106372656174654279557365724E616D6571007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C00076B6579776F726471007E00094C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0009736F7572636556616C71007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E707372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000019AE34E3200787070740000707070707400013174000B3020302031202A202A203F74001744624261636B7570436C65616E5461736B2E636C65616E74000653595354454D7372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000006674001BE695B0E68DAEE5BA93E5A487E4BBBDE5AE9AE697B6E6B885E7908674000131740001307800); COMMIT; -- ---------------------------- -- Table structure for qrtz_locks -- ---------------------------- DROP TABLE IF EXISTS `qrtz_locks`; CREATE TABLE `qrtz_locks` ( `sched_name` varchar(120) NOT NULL COMMENT '调度名称', `lock_name` varchar(40) NOT NULL COMMENT '悲观锁名称', PRIMARY KEY (`sched_name`,`lock_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='存储的悲观锁信息表'; -- ---------------------------- -- Records of qrtz_locks -- ---------------------------- BEGIN; INSERT INTO `qrtz_locks` (`sched_name`, `lock_name`) VALUES ('RuoyiScheduler', 'TRIGGER_ACCESS'); COMMIT; -- ---------------------------- -- 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) NOT NULL COMMENT '调度名称', `trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', PRIMARY KEY (`sched_name`,`trigger_group`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='暂停的触发器表'; -- ---------------------------- -- Records of qrtz_paused_trigger_grps -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for qrtz_scheduler_state -- ---------------------------- DROP TABLE IF EXISTS `qrtz_scheduler_state`; CREATE TABLE `qrtz_scheduler_state` ( `sched_name` varchar(120) NOT NULL COMMENT '调度名称', `instance_name` varchar(200) NOT NULL COMMENT '实例名称', `last_checkin_time` bigint NOT NULL COMMENT '上次检查时间', `checkin_interval` bigint NOT NULL COMMENT '检查间隔时间', PRIMARY KEY (`sched_name`,`instance_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='调度器状态表'; -- ---------------------------- -- Records of qrtz_scheduler_state -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for qrtz_simple_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_simple_triggers`; CREATE TABLE `qrtz_simple_triggers` ( `sched_name` varchar(120) NOT NULL COMMENT '调度名称', `trigger_name` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', `trigger_group` varchar(200) 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`), CONSTRAINT `qrtz_simple_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='简单触发器的信息表'; -- ---------------------------- -- Records of qrtz_simple_triggers -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for qrtz_simprop_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_simprop_triggers`; CREATE TABLE `qrtz_simprop_triggers` ( `sched_name` varchar(120) NOT NULL COMMENT '调度名称', `trigger_name` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', `trigger_group` varchar(200) NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', `str_prop_1` varchar(512) DEFAULT NULL COMMENT 'String类型的trigger的第一个参数', `str_prop_2` varchar(512) DEFAULT NULL COMMENT 'String类型的trigger的第二个参数', `str_prop_3` varchar(512) DEFAULT NULL COMMENT 'String类型的trigger的第三个参数', `int_prop_1` int DEFAULT NULL COMMENT 'int类型的trigger的第一个参数', `int_prop_2` int DEFAULT NULL COMMENT 'int类型的trigger的第二个参数', `long_prop_1` bigint DEFAULT NULL COMMENT 'long类型的trigger的第一个参数', `long_prop_2` bigint DEFAULT NULL COMMENT 'long类型的trigger的第二个参数', `dec_prop_1` decimal(13,4) DEFAULT NULL COMMENT 'decimal类型的trigger的第一个参数', `dec_prop_2` decimal(13,4) DEFAULT NULL COMMENT 'decimal类型的trigger的第二个参数', `bool_prop_1` varchar(1) DEFAULT NULL COMMENT 'Boolean类型的trigger的第一个参数', `bool_prop_2` varchar(1) DEFAULT NULL COMMENT 'Boolean类型的trigger的第二个参数', PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`), CONSTRAINT `qrtz_simprop_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='同步机制的行锁表'; -- ---------------------------- -- Records of qrtz_simprop_triggers -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for qrtz_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_triggers`; CREATE TABLE `qrtz_triggers` ( `sched_name` varchar(120) NOT NULL COMMENT '调度名称', `trigger_name` varchar(200) NOT NULL COMMENT '触发器的名字', `trigger_group` varchar(200) NOT NULL COMMENT '触发器所属组的名字', `job_name` varchar(200) NOT NULL COMMENT 'qrtz_job_details表job_name的外键', `job_group` varchar(200) NOT NULL COMMENT 'qrtz_job_details表job_group的外键', `description` varchar(250) DEFAULT NULL COMMENT '相关介绍', `next_fire_time` bigint DEFAULT NULL COMMENT '上一次触发时间(毫秒)', `prev_fire_time` bigint DEFAULT NULL COMMENT '下一次触发时间(默认为-1表示不触发)', `priority` int DEFAULT NULL COMMENT '优先级', `trigger_state` varchar(16) NOT NULL COMMENT '触发器状态', `trigger_type` varchar(8) NOT NULL COMMENT '触发器的类型', `start_time` bigint NOT NULL COMMENT '开始时间', `end_time` bigint DEFAULT NULL COMMENT '结束时间', `calendar_name` varchar(200) DEFAULT NULL COMMENT '日程表名称', `misfire_instr` smallint DEFAULT NULL COMMENT '补偿执行的策略', `job_data` blob COMMENT '存放持久化job对象', PRIMARY KEY (`sched_name`,`trigger_name`,`trigger_group`), KEY `sched_name` (`sched_name`,`job_name`,`job_group`), CONSTRAINT `qrtz_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `job_name`, `job_group`) REFERENCES `qrtz_job_details` (`sched_name`, `job_name`, `job_group`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='触发器详细信息表'; -- ---------------------------- -- Records of qrtz_triggers -- ---------------------------- BEGIN; INSERT INTO `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`, `job_name`, `job_group`, `description`, `next_fire_time`, `prev_fire_time`, `priority`, `trigger_state`, `trigger_type`, `start_time`, `end_time`, `calendar_name`, `misfire_instr`, `job_data`) VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME100', 'SYSTEM', 'TASK_CLASS_NAME100', 'SYSTEM', NULL, 1768816800000, 1768816500000, 5, 'WAITING', 'CRON', 1768816150000, 0, NULL, -1, ''); INSERT INTO `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`, `job_name`, `job_group`, `description`, `next_fire_time`, `prev_fire_time`, `priority`, `trigger_state`, `trigger_type`, `start_time`, `end_time`, `calendar_name`, `misfire_instr`, `job_data`) VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME101', 'SYSTEM', 'TASK_CLASS_NAME101', 'SYSTEM', NULL, 1768838460000, -1, 5, 'PAUSED', 'CRON', 1768816151000, 0, NULL, -1, ''); INSERT INTO `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`, `job_name`, `job_group`, `description`, `next_fire_time`, `prev_fire_time`, `priority`, `trigger_state`, `trigger_type`, `start_time`, `end_time`, `calendar_name`, `misfire_instr`, `job_data`) VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME102', 'SYSTEM', 'TASK_CLASS_NAME102', 'SYSTEM', NULL, 1768842000000, -1, 5, 'WAITING', 'CRON', 1768816151000, 0, NULL, -1, ''); COMMIT; -- ---------------------------- -- 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) DEFAULT '' COMMENT '参数名称', `config_key` varchar(100) DEFAULT '' COMMENT '参数键名', `config_value` varchar(500) DEFAULT '' COMMENT '参数键值', `config_type` char(1) DEFAULT 'N' COMMENT '系统内置(Y是 N否)', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`config_id`) ) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='参数配置表'; -- ---------------------------- -- Records of sys_config -- ---------------------------- BEGIN; INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 'admin', '2025-10-21 09:30:44', '', NULL, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow'); INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 'admin', '2025-10-21 09:30:44', '', NULL, '初始化密码 123456'); INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 'admin', '2025-10-21 09:30:44', '', NULL, '深色主题theme-dark,浅色主题theme-light'); INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 'admin', '2025-10-21 09:30:44', '', NULL, '是否开启注册用户功能(true开启,false关闭)'); INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '用户登录-黑名单列表', 'sys.login.blackIPList', '', 'Y', 'admin', '2025-10-21 09:30:44', '', NULL, '设置登录IP黑名单限制,多个匹配项以;分隔,支持匹配(*通配、网段)'); INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '用户管理-初始密码修改策略', 'sys.account.initPasswordModify', '1', 'Y', 'admin', '2025-10-21 09:30:44', '', NULL, '0:初始密码修改策略关闭,没有任何提示,1:提醒用户,如果未修改初始密码,则在登录时就会提醒修改密码对话框'); INSERT INTO `sys_config` (`config_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '用户管理-账号密码更新周期', 'sys.account.passwordValidateDays', '0', 'Y', 'admin', '2025-10-21 09:30:44', '', NULL, '密码更新周期(填写数字,数据初始化值为0不限制,若修改必须为大于0小于365的正整数),如果超过这个周期登录系统时,则在登录时就会提醒修改密码对话框'); COMMIT; -- ---------------------------- -- Table structure for sys_dept -- ---------------------------- DROP TABLE IF EXISTS `sys_dept`; CREATE TABLE `sys_dept` ( `dept_id` bigint NOT NULL AUTO_INCREMENT COMMENT '部门id', `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `dept_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '部门名称', `parent_id` bigint DEFAULT '0' COMMENT '父部门id', `ancestors` varchar(50) DEFAULT '' COMMENT '祖级列表', `org_level` bigint DEFAULT NULL COMMENT '层级1-院校2-专业3-学届4-班级', `org_code` varchar(10) DEFAULT NULL COMMENT '组织编号', `org_desc` varchar(1024) DEFAULT NULL COMMENT '组织描述', `academic_id` bigint DEFAULT NULL COMMENT '学期ID', `is_current` int DEFAULT NULL COMMENT '是否当前学年', `enter_year` varchar(10) DEFAULT NULL COMMENT '入学年份', `start_year` varchar(10) DEFAULT NULL COMMENT '起始学年', `end_year` varchar(10) DEFAULT NULL COMMENT '结束学年', `org_state` int DEFAULT NULL COMMENT '状态1.未处理 2.已处理', `order_num` int DEFAULT '0' COMMENT '显示顺序', `leader` varchar(20) DEFAULT NULL COMMENT '负责人', `phone` varchar(11) DEFAULT NULL COMMENT '联系电话', `email` varchar(50) DEFAULT NULL COMMENT '邮箱', `status` char(1) DEFAULT '0' COMMENT '部门状态(0正常 1停用)', `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`dept_id`) ) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='部门表'; -- ---------------------------- -- Records of sys_dept -- ---------------------------- BEGIN; INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 1, '马克思主义学院', 0, '0', 1, 'A001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-05 10:26:21', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 1, '思想政治教育', 1, '0,1', 2, 'B001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-05 10:26:34', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 1, '思想政治教育2', 1, '0,1', 2, 'B002', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-05 10:26:46', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 1, '2021级', 2, '0,1,2', 3, 'C001', NULL, NULL, NULL, '2021', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-05 10:27:04', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (5, 1, '思政2101班', 4, '0,1,2,4', 4, 'D001', NULL, 6, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-05 10:27:21', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (6, 1, '思政2102班', 4, '0,1,2,4', 4, 'D002', NULL, 6, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-05 10:27:49', 'admin', '2025-12-23 17:00:38'); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 1, '2026级', 3, '0,1,3', 3, 'C002', NULL, NULL, NULL, '2026', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-05 10:29:27', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 1, '思政2601班', 7, '0,1,3,7', 4, 'D003', NULL, 6, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-05 10:29:44', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (9, 1, '思政2602班', 7, '0,1,3,7', 4, 'D004', NULL, 6, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-05 10:30:03', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (10, 1, '2022级', 2, '0,1,2', 3, 'CS2022', NULL, NULL, NULL, '2022', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-07 16:46:00', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (11, 1, '2023级', 2, '0,1,2', 3, 'CS2023', NULL, NULL, NULL, '2023', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-07 16:46:22', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (12, 1, '2024级', 2, '0,1,2', 3, 'CS2024', NULL, NULL, NULL, '2024', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-07 16:46:33', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (13, 1, '2025级', 2, '0,1,2', 3, 'CS2025', NULL, NULL, NULL, '2025', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-07 16:46:45', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (14, 2, '马克思主义学院', 0, '0', 1, 'A001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-13 15:26:18', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (15, 2, '计算机应用', 14, '0,14', 2, 'B001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-13 15:26:44', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (16, 2, '2025界', 15, '0,14,15', 3, 'C001', NULL, NULL, NULL, '2025', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-13 15:27:05', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (17, 2, 'C2501', 16, '0,14,15,16', 4, 'X001', NULL, 27, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-13 15:30:00', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (18, 2, 'C2502', 16, '0,14,15,16', 4, 'X002', NULL, 27, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-13 15:30:13', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (19, 2, '2026界', 15, '0,14,15', 3, 'F002', NULL, NULL, NULL, '2026', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-13 15:30:33', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (20, 2, 'C2601', 19, '0,14,15,19', 4, 'X003', NULL, 30, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-13 15:30:48', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (21, 2, 'C2602', 19, '0,14,15,19', 4, 'X003', NULL, 30, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-11-13 15:31:05', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (22, 17, '信息工程学院', 0, '0', 1, 'jxg0001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '13488103555', '2025-11-20 11:12:27', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (23, 17, '计算机专业', 22, '0,22', 2, 'jsj0001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '13488103555', '2025-11-20 11:12:50', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (24, 17, '2024', 23, '0,22,23', 3, '2024', NULL, NULL, NULL, '2024', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '13488103555', '2025-11-20 11:13:19', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (25, 17, '求真8班', 24, '0,22,23,24', 4, '1232323', NULL, 32, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '13488103555', '2025-11-20 11:13:43', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (26, 17, '尚美5班', 24, '0,22,23,24', 4, 'sm0001', NULL, 32, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '13488103555', '2025-11-20 11:14:08', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (27, 21, '马克思主义学院', 0, '0', 1, 'ys001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '15202903075', '2025-11-27 18:08:25', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (28, 21, '思想政治与教育', 27, '0,27', 2, 'zy001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '15202903075', '2025-11-27 18:09:21', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (29, 21, '2025界', 28, '0,27,28', 3, 'xj001', NULL, NULL, NULL, '2025', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '15202903075', '2025-11-27 18:11:43', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (30, 21, '2025思政一班', 29, '0,27,28,29', 4, 'bj001', NULL, 36, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '15202903075', '2025-11-27 18:13:11', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (31, 1, 'test2学院', 0, '0', 1, 'XY002', '1111', NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-12-02 17:21:58', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (32, 1, '2021界思政2103班', 4, '0,1,2,4', 4, 'cls003', NULL, 6, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-12-18 15:36:35', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (33, 1, '2021界思政2104班', 4, '0,1,2,4', 4, 'cls004', NULL, 6, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', 'admin', '2025-12-18 15:36:49', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (34, 17, 'ccc', 22, '0,22', 2, 'c001', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '13488103555', '2026-01-19 17:36:54', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (35, 17, 'Test2026', 34, '0,22,34', 3, 'C202601', NULL, NULL, NULL, '2026', NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '13488103555', '2026-01-19 17:37:15', '', NULL); INSERT INTO `sys_dept` (`dept_id`, `sch_id`, `dept_name`, `parent_id`, `ancestors`, `org_level`, `org_code`, `org_desc`, `academic_id`, `is_current`, `enter_year`, `start_year`, `end_year`, `org_state`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (36, 17, 'C202601', 35, '0,22,34,35', 4, 'C202601-1', NULL, 34, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '0', '0', '13488103555', '2026-01-19 17:37:44', '', NULL); COMMIT; -- ---------------------------- -- Table structure for sys_dict_data -- ---------------------------- DROP TABLE IF EXISTS `sys_dict_data`; CREATE TABLE `sys_dict_data` ( `dict_code` bigint NOT NULL AUTO_INCREMENT COMMENT '字典编码', `dict_sort` int DEFAULT '0' COMMENT '字典排序', `dict_label` varchar(100) DEFAULT '' COMMENT '字典标签', `dict_value` varchar(100) DEFAULT '' COMMENT '字典键值', `dict_type` varchar(100) DEFAULT '' COMMENT '字典类型', `css_class` varchar(100) DEFAULT NULL COMMENT '样式属性(其他样式扩展)', `list_class` varchar(100) DEFAULT NULL COMMENT '表格回显样式', `is_default` char(1) DEFAULT 'N' COMMENT '是否默认(Y是 N否)', `status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`dict_code`) ) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='字典数据表'; -- ---------------------------- -- Records of sys_dict_data -- ---------------------------- BEGIN; INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 1, '男', '0', 'sys_user_sex', '', '', 'Y', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '性别男'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 2, '女', '1', 'sys_user_sex', '', '', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '性别女'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 3, '未知', '2', 'sys_user_sex', '', '', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '性别未知'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '显示菜单'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '隐藏菜单'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '正常状态'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '停用状态'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, 1, '正常', '0', 'sys_job_status', '', 'primary', 'Y', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '正常状态'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, 2, '暂停', '1', 'sys_job_status', '', 'danger', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '停用状态'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, 1, '默认', 'DEFAULT', 'sys_job_group', '', '', 'Y', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '默认分组'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, 2, '系统', 'SYSTEM', 'sys_job_group', '', '', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '系统分组'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '系统默认是'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (13, 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '系统默认否'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (14, 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '通知'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (15, 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '公告'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (16, 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '正常状态'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (17, 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '关闭状态'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (18, 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '其他操作'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (19, 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '新增操作'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (20, 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '修改操作'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '删除操作'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '授权操作'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (23, 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '导出操作'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (24, 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '导入操作'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (25, 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '强退操作'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (26, 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '生成操作'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (27, 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '清空操作'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (28, 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '正常状态'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (29, 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '停用状态'); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (101, 1, '单选题', '1', 'exam_ques_type', NULL, 'default', 'N', '0', 'admin', '2025-11-08 15:33:49', '', NULL, NULL); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (102, 2, '多选题', '2', 'exam_ques_type', NULL, 'default', 'N', '0', 'admin', '2025-11-08 15:34:07', '', NULL, NULL); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (103, 3, '判断题', '3', 'exam_ques_type', NULL, 'default', 'N', '0', 'admin', '2025-11-08 15:34:15', '', NULL, NULL); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (104, 1, '0.8(易)', '0.8', 'exam_ques_rank', NULL, 'default', 'N', '0', 'admin', '2025-11-08 15:36:05', '', NULL, NULL); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (105, 2, '0.6(中)', '0.6', 'exam_ques_rank', NULL, 'default', 'N', '0', 'admin', '2025-11-08 15:36:21', '', NULL, NULL); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (106, 3, '0.4(难)', '0.4', 'exam_ques_rank', NULL, 'default', 'N', '0', 'admin', '2025-11-08 15:36:47', '', NULL, NULL); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (107, 0, '未开始', '1', 'exam_plan_status', NULL, 'danger', 'N', '0', 'admin', '2025-11-16 16:00:34', 'admin', '2025-11-28 15:23:19', NULL); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (108, 10, '进行中', '2', 'exam_plan_status', NULL, 'primary', 'N', '0', 'admin', '2025-11-16 16:00:51', 'admin', '2025-11-28 15:23:38', NULL); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, 100, '已结束', '3', 'exam_plan_status', NULL, 'success', 'N', '0', 'admin', '2025-11-16 16:01:12', 'admin', '2025-11-28 15:23:59', NULL); INSERT INTO `sys_dict_data` (`dict_code`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (110, 0, 'default', 'deepseek-r1:14b', 'ai_model_name', NULL, 'default', 'N', '0', 'admin', '2025-12-04 18:01:13', 'admin', '2025-12-04 18:01:32', NULL); COMMIT; -- ---------------------------- -- Table structure for sys_dict_type -- ---------------------------- DROP TABLE IF EXISTS `sys_dict_type`; CREATE TABLE `sys_dict_type` ( `dict_id` bigint NOT NULL AUTO_INCREMENT COMMENT '字典主键', `dict_name` varchar(100) DEFAULT '' COMMENT '字典名称', `dict_type` varchar(100) DEFAULT '' COMMENT '字典类型', `status` char(1) DEFAULT '0' COMMENT '状态(0正常 1停用)', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`dict_id`), UNIQUE KEY `dict_type` (`dict_type`) ) ENGINE=InnoDB AUTO_INCREMENT=106 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='字典类型表'; -- ---------------------------- -- Records of sys_dict_type -- ---------------------------- BEGIN; INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '用户性别', 'sys_user_sex', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '用户性别列表'); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '菜单状态', 'sys_show_hide', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '菜单状态列表'); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '系统开关', 'sys_normal_disable', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '系统开关列表'); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '任务状态', 'sys_job_status', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '任务状态列表'); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '任务分组', 'sys_job_group', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '任务分组列表'); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '系统是否', 'sys_yes_no', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '系统是否列表'); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '通知类型', 'sys_notice_type', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '通知类型列表'); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, '通知状态', 'sys_notice_status', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '通知状态列表'); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, '操作类型', 'sys_oper_type', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '操作类型列表'); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, '系统状态', 'sys_common_status', '0', 'admin', '2025-10-21 09:30:44', '', NULL, '登录状态列表'); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (102, '试题类型', 'exam_ques_type', '0', 'admin', '2025-11-08 15:33:18', 'admin', '2025-11-08 15:35:08', NULL); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (103, '试题级别', 'exam_ques_rank', '0', 'admin', '2025-11-08 15:34:59', '', NULL, NULL); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (104, '考试状态', 'exam_plan_status', '0', 'admin', '2025-11-16 16:00:14', '', NULL, NULL); INSERT INTO `sys_dict_type` (`dict_id`, `dict_name`, `dict_type`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (105, 'AI模型名称', 'ai_model_name', '0', 'admin', '2025-12-04 18:00:21', '', NULL, NULL); COMMIT; -- ---------------------------- -- 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) NOT NULL DEFAULT '' COMMENT '任务名称', `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `job_group` varchar(64) NOT NULL DEFAULT 'DEFAULT' COMMENT '任务组名', `invoke_target` varchar(500) NOT NULL COMMENT '调用目标字符串', `cron_expression` varchar(255) DEFAULT '' COMMENT 'cron执行表达式', `misfire_policy` varchar(20) DEFAULT '3' COMMENT '计划执行错误策略(1立即执行 2执行一次 3放弃执行)', `concurrent` char(1) DEFAULT '1' COMMENT '是否并发执行(0允许 1禁止)', `status` char(1) DEFAULT '0' COMMENT '状态(0正常 1暂停)', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) DEFAULT '' COMMENT '备注信息', PRIMARY KEY (`job_id`,`job_name`,`job_group`) ) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='定时任务调度表'; -- ---------------------------- -- Records of sys_job -- ---------------------------- BEGIN; INSERT INTO `sys_job` (`job_id`, `job_name`, `sch_id`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (100, '系统消息&通知公告&热点定时发送', NULL, 'SYSTEM', 'InformationTask.sendMessage', '0 */5 * * * ?', '1', '1', '0', 'admin', '2025-11-14 17:21:39', 'admin', '2025-12-03 16:14:03', ''); INSERT INTO `sys_job` (`job_id`, `job_name`, `sch_id`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (101, '上课信息状态定时刷新', NULL, 'SYSTEM', 'BaseClassSchTask.refreshClassScheduleStatus', '0 1 0 * * ?', '1', '1', '1', 'admin', '2025-11-15 10:16:16', 'admin', '2025-11-15 10:45:34', ''); INSERT INTO `sys_job` (`job_id`, `job_name`, `sch_id`, `job_group`, `invoke_target`, `cron_expression`, `misfire_policy`, `concurrent`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (102, '数据库备份定时清理', NULL, 'SYSTEM', 'DbBackupCleanTask.clean', '0 0 1 * * ?', '1', '1', '0', 'admin', '2025-12-03 16:22:24', '', '2025-12-03 16:22:35', ''); COMMIT; -- ---------------------------- -- 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) NOT NULL COMMENT '任务名称', `job_group` varchar(64) NOT NULL COMMENT '任务组名', `invoke_target` varchar(500) NOT NULL COMMENT '调用目标字符串', `job_message` varchar(500) DEFAULT NULL COMMENT '日志信息', `status` char(1) DEFAULT '0' COMMENT '执行状态(0正常 1失败)', `exception_info` varchar(2000) DEFAULT '' COMMENT '异常信息', `create_time` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`job_log_id`) ) ENGINE=InnoDB AUTO_INCREMENT=13098 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='定时任务调度日志表'; -- ---------------------------- -- Records of sys_job_log -- ---------------------------- BEGIN; INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-17 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-17 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-17 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-17 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-17 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-17 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-17 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-17 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-17 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-17 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-17 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-17 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (14, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:117毫秒', '0', '', '2025-12-17 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (15, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (16, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-17 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (17, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-17 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (18, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-17 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (19, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-17 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (20, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (21, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (22, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-17 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (23, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (24, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-17 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (25, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-17 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (26, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (27, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-17 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (28, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-17 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (29, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-17 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (30, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (31, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-17 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (32, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (33, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-17 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (34, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-17 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (35, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-17 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (36, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-17 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (37, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-17 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (38, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-17 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (39, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-17 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (40, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-17 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (41, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (42, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (43, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (44, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:114毫秒', '0', '', '2025-12-17 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (45, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:114毫秒', '0', '', '2025-12-17 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (46, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:114毫秒', '0', '', '2025-12-17 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (47, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:114毫秒', '0', '', '2025-12-17 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (48, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:115毫秒', '0', '', '2025-12-17 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (49, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-17 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (50, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-17 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (51, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-17 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (52, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-17 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (53, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-17 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (54, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-17 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (55, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-17 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (56, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-17 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (57, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-17 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (58, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-17 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (59, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-17 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (60, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-17 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (61, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-17 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (62, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-17 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (63, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-17 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (64, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-17 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (65, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-17 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (66, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (67, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-17 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (68, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (69, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (70, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (71, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-17 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (72, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (73, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (74, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (75, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-17 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (76, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (77, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-17 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (78, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-17 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (79, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-17 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (80, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-17 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (81, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2025-12-17 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (82, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (83, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (84, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (85, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (86, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (87, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (88, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-17 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (89, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (90, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-17 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (91, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (92, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-17 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (93, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-17 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (94, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (95, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-17 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (96, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-17 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (97, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:175毫秒', '0', '', '2025-12-17 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (98, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-17 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (99, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-17 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-17 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-17 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-17 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-17 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-17 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-17 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-17 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-17 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-17 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-17 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-17 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-17 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-17 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-17 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:175毫秒', '0', '', '2025-12-17 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:177毫秒', '0', '', '2025-12-18 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-18 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-18 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:176毫秒', '0', '', '2025-12-18 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-18 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (127, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:136毫秒', '0', '', '2025-12-18 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-18 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-18 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-18 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-18 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-18 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-18 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-18 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-18 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-18 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-18 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-18 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-18 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-18 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-18 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-18 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-18 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-18 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-18 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-18 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-18 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-18 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-18 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-18 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-18 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-18 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-18 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-18 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-18 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-18 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-18 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-18 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-18 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-18 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-18 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-18 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-18 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-18 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-18 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-18 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-18 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-18 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-18 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-18 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-18 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-18 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-18 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-18 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2025-12-18 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-18 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-18 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-18 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-18 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-18 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-18 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-18 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-18 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-18 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-18 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-18 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-18 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-18 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-18 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-18 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-18 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:101毫秒', '0', '', '2025-12-18 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:100毫秒', '0', '', '2025-12-18 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:100毫秒', '0', '', '2025-12-18 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-18 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-18 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-18 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-18 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-18 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:332毫秒', '0', '', '2025-12-18 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2025-12-18 11:50:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-18 12:10:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-18 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-18 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-18 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-18 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-18 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-18 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2025-12-18 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:152毫秒', '0', '', '2025-12-18 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-18 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-18 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-18 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-18 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:101毫秒', '0', '', '2025-12-18 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:101毫秒', '0', '', '2025-12-18 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:100毫秒', '0', '', '2025-12-18 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:100毫秒', '0', '', '2025-12-18 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:100毫秒', '0', '', '2025-12-18 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:184毫秒', '0', '', '2025-12-18 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-18 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-18 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-18 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-18 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-18 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-18 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2025-12-18 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2025-12-18 16:35:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-18 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-18 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-18 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-18 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:118毫秒', '0', '', '2025-12-18 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:118毫秒', '0', '', '2025-12-18 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:119毫秒', '0', '', '2025-12-18 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:118毫秒', '0', '', '2025-12-18 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-18 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-18 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-18 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-18 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:181毫秒', '0', '', '2025-12-18 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:180毫秒', '0', '', '2025-12-18 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-18 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:181毫秒', '0', '', '2025-12-18 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:181毫秒', '0', '', '2025-12-18 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-18 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:201毫秒', '0', '', '2025-12-18 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:202毫秒', '0', '', '2025-12-18 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:204毫秒', '0', '', '2025-12-18 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:202毫秒', '0', '', '2025-12-18 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:202毫秒', '0', '', '2025-12-18 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:202毫秒', '0', '', '2025-12-18 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:203毫秒', '0', '', '2025-12-18 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-18 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:250毫秒', '0', '', '2025-12-18 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:252毫秒', '0', '', '2025-12-18 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:252毫秒', '0', '', '2025-12-18 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:252毫秒', '0', '', '2025-12-18 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:250毫秒', '0', '', '2025-12-18 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:252毫秒', '0', '', '2025-12-18 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-18 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-18 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:156毫秒', '0', '', '2025-12-18 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-18 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2025-12-18 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-18 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:149毫秒', '0', '', '2025-12-18 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:226毫秒', '0', '', '2025-12-18 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:225毫秒', '0', '', '2025-12-18 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:252毫秒', '0', '', '2025-12-18 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:250毫秒', '0', '', '2025-12-18 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:252毫秒', '0', '', '2025-12-18 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:250毫秒', '0', '', '2025-12-18 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:252毫秒', '0', '', '2025-12-18 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:225毫秒', '0', '', '2025-12-18 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:225毫秒', '0', '', '2025-12-18 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:225毫秒', '0', '', '2025-12-18 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:224毫秒', '0', '', '2025-12-18 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:225毫秒', '0', '', '2025-12-18 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:226毫秒', '0', '', '2025-12-18 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:225毫秒', '0', '', '2025-12-18 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:224毫秒', '0', '', '2025-12-18 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:252毫秒', '0', '', '2025-12-18 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-18 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-18 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-18 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-18 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-18 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-18 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-18 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-18 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-18 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (421, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:119毫秒', '0', '', '2025-12-19 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-19 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-19 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-19 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-19 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-19 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-19 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-19 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-19 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-19 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-19 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-19 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-19 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-19 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-19 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-19 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-19 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-19 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-19 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-19 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-19 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-19 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-19 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-19 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-19 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-19 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-19 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-19 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-19 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-20 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-20 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (710, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:139毫秒', '0', '', '2025-12-20 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-20 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-20 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-20 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-20 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-20 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-20 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-20 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-20 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-20 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-20 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-20 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-20 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-20 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-20 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-20 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-20 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-20 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-20 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-20 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (999, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:126毫秒', '0', '', '2025-12-21 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-21 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-21 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-21 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-21 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-21 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-21 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-21 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-21 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-21 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-21 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-21 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-21 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-21 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-21 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-21 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-21 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-21 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-21 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-21 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-21 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:154毫秒', '0', '', '2025-12-21 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-21 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-21 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-21 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-21 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-21 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-21 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-21 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-21 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-21 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-21 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-21 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-21 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1289, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:163毫秒', '0', '', '2025-12-22 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2025-12-22 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-22 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-22 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-22 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-22 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2025-12-22 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:98毫秒', '0', '', '2025-12-22 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:98毫秒', '0', '', '2025-12-22 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:97毫秒', '0', '', '2025-12-22 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:97毫秒', '0', '', '2025-12-22 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:97毫秒', '0', '', '2025-12-22 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:98毫秒', '0', '', '2025-12-22 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-22 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-22 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-22 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-22 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-22 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:157毫秒', '0', '', '2025-12-22 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:127毫秒', '0', '', '2025-12-22 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:127毫秒', '0', '', '2025-12-22 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:127毫秒', '0', '', '2025-12-22 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:127毫秒', '0', '', '2025-12-22 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2025-12-22 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-22 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2025-12-22 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-22 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:102毫秒', '0', '', '2025-12-22 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:101毫秒', '0', '', '2025-12-22 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:102毫秒', '0', '', '2025-12-22 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2025-12-22 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:101毫秒', '0', '', '2025-12-22 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:102毫秒', '0', '', '2025-12-22 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:102毫秒', '0', '', '2025-12-22 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:102毫秒', '0', '', '2025-12-22 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2025-12-22 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2025-12-22 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2025-12-22 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:550毫秒', '0', '', '2025-12-22 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2025-12-22 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-22 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-22 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-22 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-22 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-22 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-22 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-22 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-22 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-22 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-22 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-22 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-22 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-22 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-22 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-22 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-22 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-22 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-22 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2025-12-22 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2025-12-22 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-22 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-22 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-22 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-22 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-22 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:217毫秒', '0', '', '2025-12-22 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:216毫秒', '0', '', '2025-12-22 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:217毫秒', '0', '', '2025-12-22 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:216毫秒', '0', '', '2025-12-22 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:216毫秒', '0', '', '2025-12-22 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:217毫秒', '0', '', '2025-12-22 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-22 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-22 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-22 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-22 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-22 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-22 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:175毫秒', '0', '', '2025-12-22 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-22 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-22 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-22 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-22 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:180毫秒', '0', '', '2025-12-22 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-22 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:177毫秒', '0', '', '2025-12-23 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:182毫秒', '0', '', '2025-12-23 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1578, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:190毫秒', '0', '', '2025-12-23 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-23 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-23 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:180毫秒', '0', '', '2025-12-23 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-23 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:176毫秒', '0', '', '2025-12-23 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:175毫秒', '0', '', '2025-12-23 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:176毫秒', '0', '', '2025-12-23 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-23 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-23 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:346毫秒', '0', '', '2025-12-23 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2025-12-23 09:40:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:175毫秒', '0', '', '2025-12-23 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2025-12-23 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10007毫秒', '0', '', '2025-12-23 10:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10019毫秒', '0', '', '2025-12-23 11:35:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:174毫秒', '0', '', '2025-12-23 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:234毫秒', '0', '', '2025-12-23 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-23 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-23 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-23 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-23 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-23 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-23 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-23 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-23 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-23 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-23 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-23 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-23 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-23 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-23 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2025-12-23 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:172毫秒', '0', '', '2025-12-23 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-23 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-23 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-23 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-23 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-23 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:149毫秒', '0', '', '2025-12-23 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-23 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-23 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-23 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:149毫秒', '0', '', '2025-12-23 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-23 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-23 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-23 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-23 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2025-12-23 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-23 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-23 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-23 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2025-12-23 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-23 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2025-12-23 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:102毫秒', '0', '', '2025-12-23 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2025-12-23 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2025-12-23 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2025-12-23 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2025-12-23 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3377毫秒', '0', '', '2025-12-23 18:10:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:149毫秒', '0', '', '2025-12-23 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2025-12-23 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2025-12-23 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-23 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-23 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-23 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-23 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-23 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-23 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-23 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-23 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:149毫秒', '0', '', '2025-12-23 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-23 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-23 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-23 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-23 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-23 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-23 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2025-12-23 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-23 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-24 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:150毫秒', '0', '', '2025-12-24 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1871, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:307毫秒', '0', '', '2025-12-24 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2025-12-24 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-24 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-24 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-24 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2025-12-24 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2025-12-24 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-24 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-24 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-24 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-24 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-24 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-24 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-24 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:251毫秒', '0', '', '2025-12-24 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:158毫秒', '0', '', '2025-12-24 11:19:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (1999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-24 11:54:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-24 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-24 13:15:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-24 13:19:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-24 13:24:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-24 13:29:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-24 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-24 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-24 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10029毫秒', '0', '', '2025-12-24 16:40:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-24 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-24 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:149毫秒', '0', '', '2025-12-24 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-24 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-24 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-24 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-24 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2025-12-25 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-25 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2166, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:130毫秒', '0', '', '2025-12-25 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-25 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-25 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-25 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-25 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-25 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2025-12-25 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:291毫秒', '0', '', '2025-12-25 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-25 12:05:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-25 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-25 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-25 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-25 13:59:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-25 14:04:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-25 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-25 14:09:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-25 14:14:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-25 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-25 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-25 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:120毫秒', '0', '', '2025-12-25 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-25 16:40:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-25 16:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:119毫秒', '0', '', '2025-12-25 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-25 16:49:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-25 16:54:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-25 16:59:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-25 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:117毫秒', '0', '', '2025-12-25 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:114毫秒', '0', '', '2025-12-25 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:118毫秒', '0', '', '2025-12-25 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:114毫秒', '0', '', '2025-12-25 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:115毫秒', '0', '', '2025-12-25 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:114毫秒', '0', '', '2025-12-25 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-25 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-25 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-25 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-25 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2025-12-25 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2025-12-25 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2025-12-25 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-25 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2025-12-25 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-25 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-25 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:114毫秒', '0', '', '2025-12-25 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:116毫秒', '0', '', '2025-12-25 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-25 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-25 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-25 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-25 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2025-12-25 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2025-12-25 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:150毫秒', '0', '', '2025-12-25 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-25 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-25 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-25 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-25 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-25 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-25 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-26 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2466, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:126毫秒', '0', '', '2025-12-26 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-26 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-26 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-26 10:23:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2582, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:5407毫秒', '0', '', '2025-12-26 10:23:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-26 10:23:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-26 10:23:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 10:23:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-26 10:23:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-26 10:23:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-26 10:23:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:150毫秒', '0', '', '2025-12-26 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-26 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-26 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-26 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2025-12-26 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:152毫秒', '0', '', '2025-12-26 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:151毫秒', '0', '', '2025-12-26 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2025-12-26 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:151毫秒', '0', '', '2025-12-26 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-26 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:154毫秒', '0', '', '2025-12-26 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:150毫秒', '0', '', '2025-12-26 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:154毫秒', '0', '', '2025-12-26 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:168毫秒', '0', '', '2025-12-26 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:175毫秒', '0', '', '2025-12-26 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2025-12-26 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:156毫秒', '0', '', '2025-12-26 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-26 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2025-12-26 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:154毫秒', '0', '', '2025-12-26 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:151毫秒', '0', '', '2025-12-26 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-26 14:30:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2025-12-26 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-26 14:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:299毫秒', '0', '', '2025-12-26 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-26 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2025-12-26 16:15:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:26毫秒', '0', '', '2025-12-26 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2025-12-26 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:158毫秒', '0', '', '2025-12-26 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:23毫秒', '0', '', '2025-12-26 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2025-12-26 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:152毫秒', '0', '', '2025-12-26 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2025-12-26 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2025-12-26 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2025-12-26 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2025-12-26 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-26 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-26 18:00:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-26 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-26 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2025-12-26 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-26 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2025-12-26 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2025-12-26 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2025-12-26 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-26 18:25:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2025-12-26 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2025-12-26 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-26 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-26 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-26 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:100毫秒', '0', '', '2025-12-26 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-26 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:97毫秒', '0', '', '2025-12-26 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:100毫秒', '0', '', '2025-12-26 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:97毫秒', '0', '', '2025-12-26 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:100毫秒', '0', '', '2025-12-26 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:97毫秒', '0', '', '2025-12-26 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-26 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-26 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-26 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:101毫秒', '0', '', '2025-12-26 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:98毫秒', '0', '', '2025-12-26 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:98毫秒', '0', '', '2025-12-26 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2025-12-26 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-26 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:99毫秒', '0', '', '2025-12-26 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:98毫秒', '0', '', '2025-12-26 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:102毫秒', '0', '', '2025-12-26 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:101毫秒', '0', '', '2025-12-26 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2911, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:648毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2915, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:115毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2918, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:83毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (2999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 10:51:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 10:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 13:20:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 14:40:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2025-12-29 15:15:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 15:35:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 15:39:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-29 15:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-29 15:49:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 16:25:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 16:29:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 16:34:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 16:39:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-29 16:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 16:50:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-29 17:05:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-29 17:09:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-29 17:35:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-29 17:50:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:523毫秒', '0', '', '2025-12-30 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:253毫秒', '0', '', '2025-12-30 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:227毫秒', '0', '', '2025-12-30 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-30 11:30:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-30 12:00:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-30 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-30 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-30 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-30 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-30 13:25:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-30 13:29:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-30 13:34:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-30 13:39:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-30 13:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-30 13:49:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-30 16:40:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-30 16:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:16毫秒', '0', '', '2025-12-31 09:43:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3707, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:389毫秒', '0', '', '2025-12-31 09:43:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-31 09:43:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:16毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:18毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-31 09:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-31 09:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:18毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-31 09:43:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:16毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2025-12-31 09:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 09:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:248毫秒', '0', '', '2025-12-31 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2025-12-31 11:20:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 11:24:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 11:29:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 11:34:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 11:39:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 11:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 11:50:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2025-12-31 12:15:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 12:29:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:348毫秒', '0', '', '2025-12-31 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2025-12-31 12:50:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 15:34:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 15:39:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2025-12-31 15:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2025-12-31 16:45:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3915, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:4006毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3919, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:111毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3923, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:109毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3927, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:107毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:14毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (3999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:14毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:14毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2026-01-04 09:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-04 09:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-04 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 10:50:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 10:54:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 15:40:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 15:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 15:49:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 15:54:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-04 15:59:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-04 16:05:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:304毫秒', '0', '', '2026-01-05 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-05 10:45:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-05 11:35:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-05 11:39:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-05 11:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-05 11:49:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-05 12:10:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-05 15:50:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-05 15:54:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-05 15:59:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-05 16:04:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-05 16:09:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-05 16:40:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4998, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:144毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (4999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:54毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-06 10:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:16毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:17毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:16毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:30毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:16毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-06 10:18:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:19:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:48毫秒', '0', '', '2026-01-06 10:39:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-06 10:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-06 10:49:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 10:54:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-06 10:59:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-06 12:10:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-06 16:10:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5199, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:118毫秒', '0', '', '2026-01-07 10:33:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-07 10:33:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-07 10:33:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:17毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-07 10:33:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-07 10:33:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-07 10:33:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-07 10:34:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-07 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:95毫秒', '0', '', '2026-01-08 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-08 10:15:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-08 11:00:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-08 17:45:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-08 19:30:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-08 19:45:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-08 19:49:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-08 19:54:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-08 19:59:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-08 20:04:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-09 15:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:490毫秒', '0', '', '2026-01-09 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:234毫秒', '0', '', '2026-01-09 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:55毫秒', '0', '', '2026-01-10 22:57:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5431, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:103毫秒', '0', '', '2026-01-10 22:57:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:94毫秒', '0', '', '2026-01-10 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:883毫秒', '0', '', '2026-01-10 23:05:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2026-01-10 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-10 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-10 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2026-01-10 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2026-01-10 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2026-01-10 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2026-01-10 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2026-01-10 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2026-01-10 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2026-01-10 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2026-01-11 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-11 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2026-01-11 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2026-01-11 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-11 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5457, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:185毫秒', '0', '', '2026-01-11 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2026-01-11 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2026-01-11 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:168毫秒', '0', '', '2026-01-11 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:168毫秒', '0', '', '2026-01-11 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:180毫秒', '0', '', '2026-01-11 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:179毫秒', '0', '', '2026-01-11 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:168毫秒', '0', '', '2026-01-11 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-11 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:168毫秒', '0', '', '2026-01-11 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:168毫秒', '0', '', '2026-01-11 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-11 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-11 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2026-01-11 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:168毫秒', '0', '', '2026-01-11 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2026-01-11 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:168毫秒', '0', '', '2026-01-11 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:168毫秒', '0', '', '2026-01-11 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:181毫秒', '0', '', '2026-01-11 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:127毫秒', '0', '', '2026-01-11 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-11 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:127毫秒', '0', '', '2026-01-11 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-11 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-11 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-11 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:175毫秒', '0', '', '2026-01-11 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2026-01-11 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2026-01-11 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:170毫秒', '0', '', '2026-01-11 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2026-01-11 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:171毫秒', '0', '', '2026-01-11 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:173毫秒', '0', '', '2026-01-11 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:169毫秒', '0', '', '2026-01-11 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-11 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-11 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-11 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-11 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-11 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-11 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-11 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-11 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-11 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-11 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-11 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2026-01-11 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:689毫秒', '0', '', '2026-01-11 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:233毫秒', '0', '', '2026-01-11 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:230毫秒', '0', '', '2026-01-11 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:232毫秒', '0', '', '2026-01-11 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:236毫秒', '0', '', '2026-01-11 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:235毫秒', '0', '', '2026-01-11 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:229毫秒', '0', '', '2026-01-11 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:230毫秒', '0', '', '2026-01-11 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:231毫秒', '0', '', '2026-01-11 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2026-01-11 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-11 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-11 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-11 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2026-01-11 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:152毫秒', '0', '', '2026-01-11 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2026-01-11 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2026-01-11 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-11 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:150毫秒', '0', '', '2026-01-11 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-11 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2026-01-11 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2026-01-12 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-12 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2026-01-12 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-12 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-12 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-12 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-12 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-12 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-12 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-12 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-12 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-12 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5746, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:218毫秒', '0', '', '2026-01-12 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-12 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2026-01-12 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-12 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-12 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2026-01-12 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-12 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-12 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-12 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:19毫秒', '0', '', '2026-01-12 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5860, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:8640毫秒', '0', '', '2026-01-12 10:22:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-12 10:22:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5863, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:98毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5866, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:97毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-12 10:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (5999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-12 10:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:48毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:23:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:23:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6625, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:25531毫秒', '0', '', '2026-01-12 10:54:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6626, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:128毫秒', '0', '', '2026-01-12 10:54:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6627, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:111毫秒', '0', '', '2026-01-12 10:54:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6628, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:118毫秒', '0', '', '2026-01-12 10:54:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6629, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:129毫秒', '0', '', '2026-01-12 10:54:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6630, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:117毫秒', '0', '', '2026-01-12 10:54:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6631, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:115毫秒', '0', '', '2026-01-12 10:54:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6632, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:115毫秒', '0', '', '2026-01-12 10:54:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6633, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:130毫秒', '0', '', '2026-01-12 10:54:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6634, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:111毫秒', '0', '', '2026-01-12 10:54:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6635, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:110毫秒', '0', '', '2026-01-12 10:54:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6636, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:110毫秒', '0', '', '2026-01-12 10:54:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6637, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:120毫秒', '0', '', '2026-01-12 10:54:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3140毫秒', '0', '', '2026-01-12 10:54:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3071毫秒', '0', '', '2026-01-12 10:54:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 10:54:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 10:54:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 10:54:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 10:54:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 10:54:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 10:55:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2853毫秒', '0', '', '2026-01-12 10:55:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 10:55:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 10:55:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 10:55:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 10:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2865毫秒', '0', '', '2026-01-12 10:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 10:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 10:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 10:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 10:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 10:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2807毫秒', '0', '', '2026-01-12 10:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 10:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 10:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 10:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 10:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 10:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 10:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 10:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 10:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 10:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 10:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 10:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 10:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 10:56:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 10:56:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 10:56:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 10:56:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 10:56:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 10:56:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 10:56:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 10:56:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 10:56:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 10:56:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 10:56:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 10:56:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 10:56:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 10:56:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 10:57:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 10:57:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 10:57:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 10:57:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2888毫秒', '0', '', '2026-01-12 10:57:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 10:57:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 10:57:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 10:57:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 10:57:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 10:57:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 10:57:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 10:57:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 10:57:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 10:57:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 10:57:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2861毫秒', '0', '', '2026-01-12 10:57:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 10:57:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 10:57:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 10:57:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2882毫秒', '0', '', '2026-01-12 10:57:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 10:58:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 10:58:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 10:58:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 10:58:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 10:58:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 10:58:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 10:58:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 10:58:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 10:58:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 10:58:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 10:58:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 10:58:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 10:58:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 10:58:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 10:58:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 10:58:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 10:58:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 10:58:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 10:58:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 10:58:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 10:59:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 10:59:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 10:59:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 10:59:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 10:59:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 10:59:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 10:59:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 10:59:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 10:59:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 10:59:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 10:59:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 10:59:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 10:59:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 10:59:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 10:59:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 10:59:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 10:59:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2814毫秒', '0', '', '2026-01-12 10:59:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 10:59:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 10:59:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:00:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:00:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 11:00:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:00:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:00:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:00:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:00:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:00:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:00:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:00:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:00:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:00:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:00:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:00:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:00:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:00:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:00:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:00:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2868毫秒', '0', '', '2026-01-12 11:00:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:01:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:01:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:01:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2825毫秒', '0', '', '2026-01-12 11:01:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:01:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 11:01:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:01:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:01:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:01:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:01:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:01:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:01:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:01:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:01:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:01:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:01:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 11:01:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:01:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:01:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:01:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:02:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:02:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:02:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:02:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:02:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:02:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:02:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:02:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:02:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:02:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:02:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:02:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:02:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:02:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:02:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:02:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2899毫秒', '0', '', '2026-01-12 11:02:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:02:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:02:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:02:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:03:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:03:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:03:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:03:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 11:03:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:03:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:03:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:03:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 11:03:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:03:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:03:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:03:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:03:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:03:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:03:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2821毫秒', '0', '', '2026-01-12 11:03:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:03:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:03:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:03:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2892毫秒', '0', '', '2026-01-12 11:03:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:04:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:04:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:04:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:04:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:04:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:04:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:04:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:04:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:04:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:04:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2880毫秒', '0', '', '2026-01-12 11:04:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:04:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:04:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:04:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:04:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:04:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:04:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:04:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:04:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:04:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:05:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:05:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:05:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3005毫秒', '0', '', '2026-01-12 11:05:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2816毫秒', '0', '', '2026-01-12 11:05:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:05:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:05:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:05:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:05:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 11:05:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 11:05:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 11:05:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:05:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:05:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:05:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:05:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:05:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:05:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:05:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:05:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:06:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:06:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 11:06:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:06:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:06:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:06:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:06:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:06:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:06:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:06:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:06:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:06:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:06:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:06:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:06:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:06:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:06:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:06:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:06:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:07:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:07:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:07:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2879毫秒', '0', '', '2026-01-12 11:07:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:07:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:07:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:07:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:07:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:07:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 11:07:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:07:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:07:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:07:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2842毫秒', '0', '', '2026-01-12 11:07:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:07:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:07:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:07:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:07:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:07:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:07:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:08:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:08:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:08:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:08:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:08:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:08:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:08:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:08:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 11:08:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:08:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:08:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:08:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:08:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:08:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:08:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:08:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:08:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:08:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:08:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:08:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:09:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:09:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:09:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:09:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:09:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:09:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:09:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:09:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 11:09:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:09:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:09:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:09:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:09:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:09:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:09:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:09:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:09:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:09:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:09:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:09:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:10:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:10:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2892毫秒', '0', '', '2026-01-12 11:10:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:334毫秒', '0', '', '2026-01-12 11:10:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:10:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:10:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:10:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:10:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:10:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:10:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:10:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:10:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:10:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2886毫秒', '0', '', '2026-01-12 11:10:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:10:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:10:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:10:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:10:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:10:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:10:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:10:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:11:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2876毫秒', '0', '', '2026-01-12 11:11:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:11:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:11:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:11:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 11:11:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:11:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 11:11:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:11:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:11:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:11:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:11:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:11:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:11:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:11:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:11:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:11:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2884毫秒', '0', '', '2026-01-12 11:11:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:11:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 11:11:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:12:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:12:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:12:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:12:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:12:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:12:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:12:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:12:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:12:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (6999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:12:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:12:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:12:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 11:12:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:12:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:12:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 11:12:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:12:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:12:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:12:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:12:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:13:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:13:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:13:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 11:13:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 11:13:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:13:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:13:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:13:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:13:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:13:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:13:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:13:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:13:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:13:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:13:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:13:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2893毫秒', '0', '', '2026-01-12 11:13:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2854毫秒', '0', '', '2026-01-12 11:13:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:13:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2847毫秒', '0', '', '2026-01-12 11:13:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:14:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:14:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:14:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:14:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2886毫秒', '0', '', '2026-01-12 11:14:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:14:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:14:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:14:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2847毫秒', '0', '', '2026-01-12 11:14:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2769毫秒', '0', '', '2026-01-12 11:14:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:14:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:14:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:14:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:14:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:14:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:14:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:14:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:14:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:14:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:14:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:15:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:15:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:15:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:15:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:15:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:15:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:15:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:15:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2866毫秒', '0', '', '2026-01-12 11:15:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:15:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2881毫秒', '0', '', '2026-01-12 11:15:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:15:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:15:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:15:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:15:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:15:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:15:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:15:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:15:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:15:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:16:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:16:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:16:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:16:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:16:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:16:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:16:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:16:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:16:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:16:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:16:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:16:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:16:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:16:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:16:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2882毫秒', '0', '', '2026-01-12 11:16:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2883毫秒', '0', '', '2026-01-12 11:16:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:16:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:16:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:16:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:17:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:17:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:17:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:17:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:17:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:17:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:17:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:17:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:17:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 11:17:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:17:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 11:17:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2935毫秒', '0', '', '2026-01-12 11:17:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:17:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:17:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:17:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:17:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:17:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2872毫秒', '0', '', '2026-01-12 11:17:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:18:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:18:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:18:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:18:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:18:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:18:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:18:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:18:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:18:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2643毫秒', '0', '', '2026-01-12 11:18:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:18:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:18:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:18:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:18:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:18:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:18:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:18:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:18:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:18:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:18:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:19:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:19:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:19:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:19:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:19:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:19:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:19:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:19:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:19:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:19:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:19:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:19:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:19:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:19:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:19:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:19:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:19:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:19:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:19:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:19:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:20:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 11:20:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:20:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:20:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:20:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 11:20:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:20:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2835毫秒', '0', '', '2026-01-12 11:20:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:20:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:20:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2810毫秒', '0', '', '2026-01-12 11:20:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:20:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:20:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2886毫秒', '0', '', '2026-01-12 11:20:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 11:20:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2877毫秒', '0', '', '2026-01-12 11:20:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:20:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:20:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:20:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:21:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:21:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:21:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:21:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:21:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:21:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:21:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:21:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:21:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:21:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:21:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:21:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:21:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2841毫秒', '0', '', '2026-01-12 11:21:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:21:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:21:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:21:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:21:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:21:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:21:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:22:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:22:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:22:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:22:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:22:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:22:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:22:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:22:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:22:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:22:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2677毫秒', '0', '', '2026-01-12 11:22:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:22:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:22:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:22:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:22:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:22:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:22:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:22:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:22:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2878毫秒', '0', '', '2026-01-12 11:22:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:23:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:23:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:23:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:23:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:23:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:23:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:23:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:23:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:23:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:23:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2765毫秒', '0', '', '2026-01-12 11:23:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2831毫秒', '0', '', '2026-01-12 11:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:23:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:23:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:23:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:23:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:23:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:23:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:24:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:24:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:24:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:24:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:24:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3012毫秒', '0', '', '2026-01-12 11:24:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:24:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:24:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:24:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:24:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 11:24:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:24:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:24:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:24:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:25:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:25:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:25:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:25:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:25:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:25:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:25:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2848毫秒', '0', '', '2026-01-12 11:25:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:25:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:25:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:25:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:25:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:25:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2836毫秒', '0', '', '2026-01-12 11:25:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:25:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:25:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 11:25:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:25:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:25:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:26:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:26:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:26:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2874毫秒', '0', '', '2026-01-12 11:26:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:26:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:26:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:26:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:26:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:26:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:26:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:26:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:26:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:26:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:26:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2862毫秒', '0', '', '2026-01-12 11:26:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:26:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 11:26:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:26:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:26:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:26:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:27:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:27:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:27:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:27:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 11:27:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:27:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:27:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:27:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:27:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:27:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:27:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:27:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:27:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2854毫秒', '0', '', '2026-01-12 11:27:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:27:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:27:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:27:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:27:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:27:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2878毫秒', '0', '', '2026-01-12 11:27:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:28:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:28:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:28:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:28:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:28:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:28:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:28:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:28:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:28:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:28:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:28:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:28:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:28:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:28:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:28:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:28:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:28:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:28:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:28:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:28:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:29:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:29:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:29:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:29:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:29:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:29:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:29:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:29:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:29:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:29:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:29:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:29:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:29:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2807毫秒', '0', '', '2026-01-12 11:29:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:29:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2941毫秒', '0', '', '2026-01-12 11:29:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 11:29:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:29:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:29:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:29:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2806毫秒', '0', '', '2026-01-12 11:30:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:30:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:30:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:30:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:30:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:30:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:30:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:30:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:30:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:30:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:30:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:30:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:30:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:30:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:30:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:30:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:31:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:31:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:31:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:31:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:31:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:31:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:31:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:31:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:31:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:31:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:31:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:31:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:31:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:31:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:31:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:31:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2887毫秒', '0', '', '2026-01-12 11:31:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:31:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:31:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:32:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 11:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:32:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:32:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:32:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:32:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:32:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:32:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:32:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:32:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:32:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:32:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:32:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:32:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:32:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 11:32:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:32:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 11:32:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:33:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:33:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:33:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:33:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:33:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:33:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:33:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:33:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:33:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:33:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:33:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:33:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:33:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:33:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:33:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:33:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 11:33:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:34:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:34:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:34:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:34:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:34:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:34:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:34:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:34:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:34:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:34:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:34:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:34:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:34:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:34:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:34:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:34:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 11:34:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:34:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:34:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 11:34:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:35:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:35:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:35:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:35:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:35:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:35:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:35:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2878毫秒', '0', '', '2026-01-12 11:35:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:35:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:35:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:35:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:35:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 11:35:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:35:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:35:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:35:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:35:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:35:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:35:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:35:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:36:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:36:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:36:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:36:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:36:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:36:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:36:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:36:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:36:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:36:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:36:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:36:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:36:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:36:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:36:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:36:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:36:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:36:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:36:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:36:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:37:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:37:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:37:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:37:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2893毫秒', '0', '', '2026-01-12 11:37:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:37:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:37:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:37:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:37:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:37:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:37:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:37:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:37:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:37:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:37:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:37:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:37:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 11:37:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:37:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:37:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:38:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:38:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:38:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2854毫秒', '0', '', '2026-01-12 11:38:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:38:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:38:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:38:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:38:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:38:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:38:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:38:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2656毫秒', '0', '', '2026-01-12 11:38:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:38:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2813毫秒', '0', '', '2026-01-12 11:38:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2840毫秒', '0', '', '2026-01-12 11:38:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2851毫秒', '0', '', '2026-01-12 11:38:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2874毫秒', '0', '', '2026-01-12 11:38:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:38:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2882毫秒', '0', '', '2026-01-12 11:38:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:38:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 11:39:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:39:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:39:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:39:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:39:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:39:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2850毫秒', '0', '', '2026-01-12 11:39:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:39:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:39:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 11:39:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:39:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 11:39:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:39:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:39:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:39:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:39:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 11:39:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:39:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:39:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:39:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:40:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:40:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:40:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 11:40:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2871毫秒', '0', '', '2026-01-12 11:40:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:40:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2877毫秒', '0', '', '2026-01-12 11:40:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:40:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:40:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:40:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:40:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:40:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:40:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:40:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:40:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:40:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:40:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2864毫秒', '0', '', '2026-01-12 11:40:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2887毫秒', '0', '', '2026-01-12 11:40:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:40:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:41:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:41:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:41:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:41:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:41:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:41:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:41:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:41:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:41:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2940毫秒', '0', '', '2026-01-12 11:41:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2878毫秒', '0', '', '2026-01-12 11:41:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:41:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:41:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:41:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:41:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 11:41:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2899毫秒', '0', '', '2026-01-12 11:41:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 11:41:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:41:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2893毫秒', '0', '', '2026-01-12 11:41:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 11:42:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 11:42:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:42:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 11:42:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:42:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2885毫秒', '0', '', '2026-01-12 11:42:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 11:42:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:42:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:42:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 11:42:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:42:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2849毫秒', '0', '', '2026-01-12 11:42:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2845毫秒', '0', '', '2026-01-12 11:42:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2887毫秒', '0', '', '2026-01-12 11:42:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 11:42:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:42:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:42:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 11:42:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2862毫秒', '0', '', '2026-01-12 11:42:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2884毫秒', '0', '', '2026-01-12 11:42:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:43:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 11:43:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:43:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:43:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:43:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 11:43:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 11:43:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:43:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 11:43:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2818毫秒', '0', '', '2026-01-12 11:43:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 11:43:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2899毫秒', '0', '', '2026-01-12 11:43:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:43:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:43:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2899毫秒', '0', '', '2026-01-12 11:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 11:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2887毫秒', '0', '', '2026-01-12 11:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:43:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:43:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:44:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:44:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:44:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:44:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:44:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:44:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 11:44:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:44:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:44:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:44:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:44:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:44:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:44:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:44:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:44:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:44:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 11:44:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:44:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 11:44:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:45:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:45:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:45:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:45:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:45:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2878毫秒', '0', '', '2026-01-12 11:45:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:22毫秒', '0', '', '2026-01-12 11:45:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2645毫秒', '0', '', '2026-01-12 11:45:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:45:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:45:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:45:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:45:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:45:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:45:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:45:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 11:45:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:45:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:45:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:45:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:45:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:45:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:46:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:46:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:46:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:46:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:46:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:46:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:46:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:46:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:46:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:46:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:46:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:46:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:46:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:46:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:46:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:46:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:46:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:46:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:46:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:46:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:47:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 11:47:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:47:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:47:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:47:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 11:47:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:47:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:47:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:47:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:47:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:47:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:47:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:47:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:47:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:47:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:47:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:47:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:47:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:47:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:47:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 11:48:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:48:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:48:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:48:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:48:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:48:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:48:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 11:48:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:48:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:48:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:48:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2837毫秒', '0', '', '2026-01-12 11:48:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:48:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:48:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:48:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:48:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:48:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:48:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:48:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:48:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2874毫秒', '0', '', '2026-01-12 11:49:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:49:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:49:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:49:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:49:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:49:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:49:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:49:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:49:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:49:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:49:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:49:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:49:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:49:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:49:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:49:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:49:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2875毫秒', '0', '', '2026-01-12 11:49:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:49:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:49:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:50:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:50:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:50:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:50:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:50:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:50:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:50:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:50:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:50:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:50:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:50:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:50:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:50:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:50:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:50:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:50:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 11:50:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:50:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:50:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:51:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:51:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:51:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 11:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:51:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:51:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:51:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:51:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:51:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:52:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:52:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:52:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:52:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:52:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:52:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 11:52:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:52:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:52:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:52:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:52:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:52:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:52:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:52:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:52:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:52:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:52:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:52:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:52:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:52:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:53:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:53:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:53:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:53:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 11:53:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:53:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:53:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:53:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2892毫秒', '0', '', '2026-01-12 11:53:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:53:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:53:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:53:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:53:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:53:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:53:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:54:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:817毫秒', '0', '', '2026-01-12 11:54:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:54:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2856毫秒', '0', '', '2026-01-12 11:54:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:54:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:54:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:54:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:54:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:54:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:54:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:54:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2865毫秒', '0', '', '2026-01-12 11:54:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:54:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:54:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:54:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:54:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:54:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:54:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:54:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 11:54:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:54:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:55:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:55:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:55:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:55:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:55:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 11:55:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 11:55:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:55:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:55:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:55:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:55:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:55:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:55:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:55:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:55:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:55:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:55:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 11:55:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:55:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:55:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:56:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 11:56:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:56:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:56:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:56:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 11:56:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 11:56:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:56:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:56:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 11:56:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:56:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 11:56:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2867毫秒', '0', '', '2026-01-12 11:56:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:56:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:56:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:56:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:56:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 11:56:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:56:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:56:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:57:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 11:57:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:57:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 11:57:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:57:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:57:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:57:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:57:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:57:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2885毫秒', '0', '', '2026-01-12 11:57:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:57:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 11:57:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:57:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:57:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:57:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:57:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:57:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:57:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:57:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:57:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:58:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:58:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 11:58:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:58:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:58:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:58:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:58:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:58:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:58:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 11:58:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 11:58:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2610毫秒', '0', '', '2026-01-12 11:58:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:58:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:58:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:58:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:58:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:58:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:58:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 11:58:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:58:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 11:59:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:59:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:59:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 11:59:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:59:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 11:59:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:59:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 11:59:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:59:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:59:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 11:59:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 11:59:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 11:59:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 11:59:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2866毫秒', '0', '', '2026-01-12 11:59:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 11:59:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 11:59:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2868毫秒', '0', '', '2026-01-12 11:59:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 11:59:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 11:59:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:00:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:00:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:00:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:00:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:00:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2883毫秒', '0', '', '2026-01-12 12:00:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2875毫秒', '0', '', '2026-01-12 12:00:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:00:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:00:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:00:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:00:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:00:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 12:00:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:00:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:00:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 12:00:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:00:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:00:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:00:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:00:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:01:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:01:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:01:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:01:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:01:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:01:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:01:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:01:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:01:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2893毫秒', '0', '', '2026-01-12 12:01:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 12:01:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:01:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:01:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:01:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:01:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:01:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 12:01:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:01:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:01:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:01:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 12:02:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:02:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:02:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:02:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:02:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:02:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2878毫秒', '0', '', '2026-01-12 12:02:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:02:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:02:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:02:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:02:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (7999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:02:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:02:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 12:02:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:02:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 12:02:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 12:02:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2878毫秒', '0', '', '2026-01-12 12:02:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2854毫秒', '0', '', '2026-01-12 12:02:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2866毫秒', '0', '', '2026-01-12 12:02:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 12:03:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 12:03:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 12:03:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:03:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:03:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:03:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 12:03:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:03:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:03:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2888毫秒', '0', '', '2026-01-12 12:03:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:03:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 12:03:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2893毫秒', '0', '', '2026-01-12 12:03:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 12:03:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2878毫秒', '0', '', '2026-01-12 12:03:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:03:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:03:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:03:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:03:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:03:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:04:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2855毫秒', '0', '', '2026-01-12 12:04:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:04:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:04:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:04:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:04:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:04:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:04:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:04:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:04:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:04:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:04:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2872毫秒', '0', '', '2026-01-12 12:04:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:04:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:04:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2827毫秒', '0', '', '2026-01-12 12:04:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:04:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:04:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 12:04:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:04:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 12:05:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:05:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:05:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:05:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 12:05:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:05:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:05:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:05:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:05:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:05:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:05:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:05:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2879毫秒', '0', '', '2026-01-12 12:05:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:05:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:05:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:05:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:05:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:05:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:05:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:05:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2853毫秒', '0', '', '2026-01-12 12:06:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:06:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2856毫秒', '0', '', '2026-01-12 12:06:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:06:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:06:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:06:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:06:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:06:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:06:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:06:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:06:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:06:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:06:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:06:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:06:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 12:06:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:06:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:06:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:06:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:07:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:07:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2872毫秒', '0', '', '2026-01-12 12:07:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2887毫秒', '0', '', '2026-01-12 12:07:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:07:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:07:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:07:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:07:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:07:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:07:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:07:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:07:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 12:07:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:07:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 12:07:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:07:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:07:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:07:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:07:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:08:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:08:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:08:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:08:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:08:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:08:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:08:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:08:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:08:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:08:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:08:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:08:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:08:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:08:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:08:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:08:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:08:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:08:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:08:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 12:08:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:09:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:09:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:09:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:09:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:09:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:09:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:09:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:09:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:09:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:09:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:09:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2882毫秒', '0', '', '2026-01-12 12:09:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:09:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:09:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:09:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:09:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:09:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:09:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:09:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:09:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:16毫秒', '0', '', '2026-01-12 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:10:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:10:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:10:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2887毫秒', '0', '', '2026-01-12 12:10:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 12:10:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:10:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:10:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:10:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:10:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:10:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:10:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:10:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:10:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:10:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 12:10:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:10:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:10:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:10:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:10:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:11:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:11:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 12:11:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:11:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:11:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:11:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:11:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:11:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:11:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:11:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:11:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:11:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:11:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:11:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:11:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:11:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:11:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:11:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:11:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2870毫秒', '0', '', '2026-01-12 12:11:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:12:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:12:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 12:12:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2862毫秒', '0', '', '2026-01-12 12:12:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:12:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2833毫秒', '0', '', '2026-01-12 12:12:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:12:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:12:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:12:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 12:12:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:12:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:12:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:12:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:12:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:12:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:12:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:12:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:12:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:12:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:12:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:13:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:13:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:13:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:13:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:13:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:13:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:13:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:13:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:13:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:13:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:13:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:13:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:13:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2846毫秒', '0', '', '2026-01-12 12:13:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:13:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:13:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:13:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:13:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:13:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:13:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:14:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:14:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:14:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:14:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:14:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 12:14:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:14:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:14:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:14:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:14:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:14:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:14:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:14:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:14:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:14:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:14:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:14:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:14:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2823毫秒', '0', '', '2026-01-12 12:14:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:14:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:15:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:15:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:15:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:15:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:15:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:15:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:15:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:15:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:15:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:15:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:15:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 12:15:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:15:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 12:15:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:15:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 12:15:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2875毫秒', '0', '', '2026-01-12 12:15:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:15:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:15:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:16:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:16:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:16:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:16:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:16:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:16:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:16:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:16:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:16:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:16:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:16:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 12:16:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:16:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:16:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:16:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:16:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:16:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:16:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:16:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:16:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:17:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:17:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:17:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:17:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:17:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:17:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:17:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:17:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:17:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:17:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:17:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 12:17:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:17:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:17:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:17:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:17:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:17:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:17:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 12:17:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:17:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2892毫秒', '0', '', '2026-01-12 12:18:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:18:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:18:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:18:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:18:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:18:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:18:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 12:18:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:18:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2666毫秒', '0', '', '2026-01-12 12:18:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2883毫秒', '0', '', '2026-01-12 12:18:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:18:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:18:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:18:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:18:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:18:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:18:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:18:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:18:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:18:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:19:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2886毫秒', '0', '', '2026-01-12 12:19:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:19:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:19:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:19:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:19:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:19:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:19:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:19:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:19:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:19:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2841毫秒', '0', '', '2026-01-12 12:19:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:19:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:19:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:19:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:19:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:19:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:19:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:19:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:19:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:20:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2825毫秒', '0', '', '2026-01-12 12:20:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:20:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:20:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:20:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:20:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:20:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:18毫秒', '0', '', '2026-01-12 12:20:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:20:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:20:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:20:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:20:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:20:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:20:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:20:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:20:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 12:20:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:20:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:20:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:20:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 12:20:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:21:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:21:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:21:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:21:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:21:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:21:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2847毫秒', '0', '', '2026-01-12 12:21:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2899毫秒', '0', '', '2026-01-12 12:21:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:21:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:21:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:21:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:21:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:21:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:21:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:21:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:21:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:21:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:21:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:21:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:21:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:22:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:22:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 12:22:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:22:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:22:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:22:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:22:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:22:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 12:22:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:22:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:22:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2892毫秒', '0', '', '2026-01-12 12:22:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:22:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:612毫秒', '0', '', '2026-01-12 12:23:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2435毫秒', '0', '', '2026-01-12 12:23:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:23:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:23:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:23:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:23:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:23:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:23:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:23:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:23:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2800毫秒', '0', '', '2026-01-12 12:23:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:23:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:23:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:24:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:24:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:24:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:24:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:24:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2879毫秒', '0', '', '2026-01-12 12:24:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:24:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:24:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:24:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:24:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:24:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:24:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:24:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:24:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:24:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:24:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:24:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:24:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:24:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2876毫秒', '0', '', '2026-01-12 12:24:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2808毫秒', '0', '', '2026-01-12 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2876毫秒', '0', '', '2026-01-12 12:25:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2870毫秒', '0', '', '2026-01-12 12:25:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2769毫秒', '0', '', '2026-01-12 12:25:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2873毫秒', '0', '', '2026-01-12 12:25:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2456毫秒', '0', '', '2026-01-12 12:25:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2658毫秒', '0', '', '2026-01-12 12:25:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 12:25:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2884毫秒', '0', '', '2026-01-12 12:25:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:25:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:25:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2866毫秒', '0', '', '2026-01-12 12:25:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:25:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:25:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:25:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:25:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:25:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:25:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:25:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:25:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:25:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:26:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:26:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:26:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 12:26:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2825毫秒', '0', '', '2026-01-12 12:26:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:26:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:26:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:26:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:26:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:26:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:26:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:26:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 12:26:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:26:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:26:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:26:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:26:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:26:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:26:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:26:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:27:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:27:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:27:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:27:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:27:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2899毫秒', '0', '', '2026-01-12 12:27:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 12:27:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:27:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 12:27:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2873毫秒', '0', '', '2026-01-12 12:27:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:27:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:27:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:27:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:27:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:27:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:27:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:27:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:27:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2899毫秒', '0', '', '2026-01-12 12:27:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:27:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:28:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:28:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2883毫秒', '0', '', '2026-01-12 12:28:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:28:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:28:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:28:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:28:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:28:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:28:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:28:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:28:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 12:28:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:28:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:28:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:28:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:28:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:28:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:28:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:28:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:28:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:29:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:29:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:29:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 12:29:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:29:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 12:29:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:29:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:29:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:29:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 12:29:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:29:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:29:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:29:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:29:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:29:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:29:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:29:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:29:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:29:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:29:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2852毫秒', '0', '', '2026-01-12 12:30:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:30:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:30:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:30:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:30:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:30:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:30:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 12:30:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:30:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:30:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:30:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 12:30:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:30:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:30:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:30:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:30:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:31:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:31:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:31:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:31:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:31:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:31:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:31:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:31:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:31:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:31:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:31:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:31:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2860毫秒', '0', '', '2026-01-12 12:31:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:31:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:31:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:31:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:31:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:31:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:31:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:32:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2843毫秒', '0', '', '2026-01-12 12:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:32:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:32:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:32:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:32:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:32:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:32:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:32:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:32:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 12:32:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:32:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:32:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:32:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:32:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:32:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:32:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:32:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:33:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2864毫秒', '0', '', '2026-01-12 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:33:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:33:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:33:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 12:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:33:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:33:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:33:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2858毫秒', '0', '', '2026-01-12 12:33:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:33:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2892毫秒', '0', '', '2026-01-12 12:33:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:33:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:33:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:33:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:34:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:34:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:34:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:34:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:34:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:34:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:34:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:34:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:34:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:34:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:34:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 12:34:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:34:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:34:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:34:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:34:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 12:34:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2935毫秒', '0', '', '2026-01-12 12:34:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:34:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:34:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:35:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:35:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:35:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:35:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:35:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:35:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2885毫秒', '0', '', '2026-01-12 12:35:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:35:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:35:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:35:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:35:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:35:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:35:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:35:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:35:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:35:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:35:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:35:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:35:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:35:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:36:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:36:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:36:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:36:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:36:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:36:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:36:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:36:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:36:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:36:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:36:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:36:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:36:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:36:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:36:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:36:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:36:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:36:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 12:36:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:36:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:37:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:37:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:37:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:37:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:37:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:37:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:37:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:37:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:37:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:37:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:37:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:37:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:37:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:37:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:37:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:37:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:37:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:37:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:37:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:37:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:38:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:38:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:38:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:38:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:38:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:38:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:38:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 12:38:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:38:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:38:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:38:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:38:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:38:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:38:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:38:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:38:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:38:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:38:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:38:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:38:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:39:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:39:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2877毫秒', '0', '', '2026-01-12 12:39:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:39:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:39:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:39:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:39:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:39:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:39:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2873毫秒', '0', '', '2026-01-12 12:39:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:39:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:39:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:39:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:39:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:39:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:39:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:39:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:39:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:39:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:39:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:40:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:40:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:40:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:40:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:40:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:40:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:40:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:40:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:40:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:40:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:40:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:40:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:40:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:40:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:40:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:40:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:40:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:40:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:40:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:40:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2878毫秒', '0', '', '2026-01-12 12:41:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:41:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:41:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:41:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:41:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 12:41:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:41:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:41:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 12:41:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:41:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:41:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:41:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:41:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:41:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:41:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:41:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:41:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:41:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:41:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:41:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:42:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:42:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:42:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:42:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:42:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:42:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:42:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 12:42:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 12:42:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 12:42:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:42:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2883毫秒', '0', '', '2026-01-12 12:42:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:42:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:42:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:42:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:42:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:42:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:42:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:42:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2893毫秒', '0', '', '2026-01-12 12:42:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:43:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:43:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:43:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:43:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:43:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2849毫秒', '0', '', '2026-01-12 12:43:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:43:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:43:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:43:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:43:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:43:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:43:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:43:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:43:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 12:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:43:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:43:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:44:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:44:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 12:44:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:44:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:44:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 12:44:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:44:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:44:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2840毫秒', '0', '', '2026-01-12 12:44:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:44:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:44:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2934毫秒', '0', '', '2026-01-12 12:44:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:44:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:44:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:44:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:44:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:44:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 12:44:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:44:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:45:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:45:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:45:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:45:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:45:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:45:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:45:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:45:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:45:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:45:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:45:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:45:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:45:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2885毫秒', '0', '', '2026-01-12 12:45:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:45:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:45:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:45:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:45:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:45:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:45:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:46:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2865毫秒', '0', '', '2026-01-12 12:46:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:46:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:46:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:46:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:46:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:46:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:46:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:46:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:46:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:46:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:46:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 12:46:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:46:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:46:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:46:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:46:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:46:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:46:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:46:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:47:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:47:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:47:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:47:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:47:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:47:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:47:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:47:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:47:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:47:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:47:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:47:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:47:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:47:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:47:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:47:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:47:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:47:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:47:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:48:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:48:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:48:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:48:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:48:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:48:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:48:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:48:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2802毫秒', '0', '', '2026-01-12 12:48:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 12:48:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:48:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:48:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:48:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:48:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:48:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 12:48:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:48:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:48:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:48:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:48:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:49:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2892毫秒', '0', '', '2026-01-12 12:49:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:49:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:49:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:49:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:49:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:49:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:49:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:49:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:49:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:49:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:49:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:49:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:49:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:49:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:49:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:49:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:49:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:49:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:49:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:50:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:50:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:50:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:50:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:50:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 12:50:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:50:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2883毫秒', '0', '', '2026-01-12 12:50:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:50:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:50:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:50:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 12:50:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:50:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:50:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:50:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:50:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:50:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:50:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:50:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:51:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2883毫秒', '0', '', '2026-01-12 12:51:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:51:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:51:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2893毫秒', '0', '', '2026-01-12 12:51:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:51:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 12:51:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2870毫秒', '0', '', '2026-01-12 12:51:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:51:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:51:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:51:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:51:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2876毫秒', '0', '', '2026-01-12 12:51:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:51:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:51:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:51:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:51:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:51:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:51:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:51:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2882毫秒', '0', '', '2026-01-12 12:52:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:52:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:52:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2863毫秒', '0', '', '2026-01-12 12:52:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:52:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:52:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:52:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:52:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1293毫秒', '0', '', '2026-01-12 12:52:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:52:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:53:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:53:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:53:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:53:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (8999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:53:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:53:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:53:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:53:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:53:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:53:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:53:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:53:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:53:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:53:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:53:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:53:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:53:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 12:53:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:53:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 12:53:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:54:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:54:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 12:54:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6016毫秒', '0', '', '2026-01-12 12:54:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:54:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:54:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 12:54:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:54:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:54:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2878毫秒', '0', '', '2026-01-12 12:54:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:54:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:54:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:54:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:54:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 12:54:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:54:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 12:54:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:54:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:54:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:55:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:55:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:55:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:55:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:55:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:55:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:55:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:55:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:55:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:55:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:55:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:55:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:55:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:55:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:55:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:55:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:55:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:55:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:55:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:55:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 12:56:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:56:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:56:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:56:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:56:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:56:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:56:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:56:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:56:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:56:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:56:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:56:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 12:56:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:56:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:56:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:56:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:56:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:56:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:56:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:56:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 12:57:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:57:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:57:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 12:57:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 12:57:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:57:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:57:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:57:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:57:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:57:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 12:57:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:57:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:57:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:57:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:57:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 12:57:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:57:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:57:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:57:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 12:57:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:58:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:58:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:58:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 12:58:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:58:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2851毫秒', '0', '', '2026-01-12 12:58:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:58:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:58:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:58:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 12:58:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 12:58:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2704毫秒', '0', '', '2026-01-12 12:58:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:58:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:58:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 12:58:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 12:58:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 12:58:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 12:58:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2892毫秒', '0', '', '2026-01-12 12:58:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 12:58:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:59:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 12:59:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:59:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:59:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 12:59:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:59:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 12:59:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 12:59:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 12:59:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:59:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:59:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:59:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 12:59:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:59:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 12:59:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 12:59:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 12:59:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 12:59:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 12:59:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 12:59:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-12 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 13:00:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:00:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:00:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:00:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:00:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:00:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:00:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:00:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:00:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:00:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:00:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:00:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:00:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:00:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:00:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:00:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:00:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:00:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:00:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 13:01:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:01:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:01:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:01:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:01:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:01:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:01:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:01:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:01:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:01:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:01:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:01:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:01:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:01:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:01:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:01:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:01:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:01:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:01:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:01:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:02:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:02:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:02:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:02:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:02:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:02:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:02:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 13:02:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:02:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:02:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2892毫秒', '0', '', '2026-01-12 13:02:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:02:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:02:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 13:02:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:02:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:02:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:02:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:02:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:02:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:02:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:03:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2843毫秒', '0', '', '2026-01-12 13:03:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:03:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:03:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:03:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:03:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:03:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:03:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:03:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:03:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:03:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:03:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 13:03:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2720毫秒', '0', '', '2026-01-12 13:03:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:03:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:03:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:03:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:03:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:03:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:03:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:04:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:04:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:04:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:04:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:04:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:04:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:04:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:04:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:04:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:04:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:04:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:04:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:04:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2893毫秒', '0', '', '2026-01-12 13:04:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:04:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:04:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:04:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:04:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:04:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:04:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:05:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:05:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:05:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:05:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:05:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:05:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:05:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:05:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 13:05:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:05:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:05:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:05:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:05:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:05:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:05:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:05:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:05:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 13:05:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:05:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:06:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:06:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:06:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:06:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:06:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 13:06:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:06:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:06:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:06:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:06:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:06:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:06:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:06:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:06:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:06:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:06:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:06:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:06:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:06:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:06:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:07:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:07:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:07:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:07:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:07:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:07:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2880毫秒', '0', '', '2026-01-12 13:07:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:07:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:07:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:07:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:07:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:07:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:07:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:07:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:07:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 13:07:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:07:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 13:07:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:07:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:07:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2848毫秒', '0', '', '2026-01-12 13:08:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:08:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:08:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:08:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:08:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:08:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:08:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:08:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:08:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:08:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 13:08:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:08:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:08:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:08:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:08:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:08:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:08:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:08:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:08:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 13:08:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:09:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:09:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:09:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:09:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:09:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:09:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:09:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:09:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:09:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:09:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:09:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:09:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:09:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:09:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:09:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:09:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:09:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:09:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:09:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:09:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:10:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:10:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:10:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:10:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:10:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:10:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:10:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:10:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:10:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:10:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:10:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2877毫秒', '0', '', '2026-01-12 13:10:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:10:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:10:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:10:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:10:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:10:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 13:10:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:10:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 13:10:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:11:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:11:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2875毫秒', '0', '', '2026-01-12 13:11:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:11:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:11:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:11:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:11:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:11:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:11:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:11:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:11:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 13:11:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:11:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:11:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:11:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:11:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:11:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:11:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:11:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:11:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:12:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:12:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2865毫秒', '0', '', '2026-01-12 13:12:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 13:12:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:12:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2934毫秒', '0', '', '2026-01-12 13:12:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:12:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:12:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2857毫秒', '0', '', '2026-01-12 13:12:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:12:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:12:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:12:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:12:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:12:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:12:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:12:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:12:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:12:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 13:12:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2846毫秒', '0', '', '2026-01-12 13:12:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:13:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:13:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:13:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:13:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:13:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:13:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 13:13:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2853毫秒', '0', '', '2026-01-12 13:13:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:13:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:13:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:13:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:13:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:13:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:13:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:13:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:13:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2893毫秒', '0', '', '2026-01-12 13:13:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:13:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:13:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:13:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:14:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:14:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:14:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:14:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2893毫秒', '0', '', '2026-01-12 13:14:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:14:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:14:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:14:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:14:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:14:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:14:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:14:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:14:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2837毫秒', '0', '', '2026-01-12 13:14:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:14:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:14:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:14:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:14:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:14:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:14:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:15:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:15:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:15:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:15:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 13:15:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:15:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 13:15:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 13:15:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:15:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:15:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:15:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:15:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:15:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:15:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:15:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 13:15:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:15:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:15:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:15:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:15:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:16:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:16:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:16:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:16:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:16:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 13:16:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:16:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:16:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:16:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:16:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:16:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:16:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:16:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:16:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:16:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:16:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:16:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:16:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:16:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:16:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:17:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 13:17:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:17:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:17:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:17:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:17:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:17:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:17:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:17:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:17:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:17:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:17:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:17:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:17:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:17:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:17:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:17:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:17:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 13:17:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:17:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2849毫秒', '0', '', '2026-01-12 13:18:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:18:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 13:18:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:18:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:18:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:18:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:18:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:18:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:18:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:18:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:18:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:18:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:18:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:18:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:18:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:18:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:18:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:18:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:18:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:18:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:19:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:19:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:19:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:19:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:19:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:19:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:19:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:19:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:19:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:19:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:19:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:19:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 13:19:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:19:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 13:19:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:19:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:19:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:19:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:19:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:19:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:20:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:20:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 13:20:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:20:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:20:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:20:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:20:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:20:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:20:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:20:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:20:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:20:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:20:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:20:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:20:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:20:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:20:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:20:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2933毫秒', '0', '', '2026-01-12 13:20:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:20:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:21:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:21:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:21:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 13:21:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:21:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 13:21:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:21:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:199毫秒', '0', '', '2026-01-12 13:22:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:22:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:22:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:22:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:22:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:22:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:22:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:22:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:22:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:22:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:22:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:22:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:22:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:22:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:22:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:22:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:22:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:22:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:23:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:23:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:23:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:23:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:23:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 13:23:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2863毫秒', '0', '', '2026-01-12 13:23:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:23:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:23:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:23:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:23:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:23:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:23:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:23:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:23:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:23:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:23:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:23:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:23:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:24:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:24:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:24:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:24:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:24:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:24:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:24:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:24:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:24:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:24:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:24:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:24:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:24:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:24:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:24:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:24:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:24:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:24:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:24:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:24:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:25:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:25:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:25:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2934毫秒', '0', '', '2026-01-12 13:25:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:25:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 13:25:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:25:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:25:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:25:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:25:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:25:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:25:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2869毫秒', '0', '', '2026-01-12 13:25:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:25:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:25:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:25:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:25:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:25:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:25:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:26:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:26:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:26:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:26:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:26:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:26:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:26:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2830毫秒', '0', '', '2026-01-12 13:26:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:26:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:26:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 13:26:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:26:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:26:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:26:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:26:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:26:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:26:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:26:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:26:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:26:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:27:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:27:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:27:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:27:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2853毫秒', '0', '', '2026-01-12 13:27:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:27:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:27:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:27:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:27:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:27:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:27:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:27:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:27:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:27:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:27:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:27:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:27:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:27:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:27:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:27:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:28:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:28:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:28:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:28:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:28:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:28:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:28:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:28:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:28:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:28:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:28:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:28:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:28:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:28:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:28:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:28:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:28:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:28:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:28:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:28:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:29:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:29:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:29:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:29:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:29:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:29:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:29:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:29:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 13:29:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:29:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:29:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 13:29:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2666毫秒', '0', '', '2026-01-12 13:29:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:29:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2663毫秒', '0', '', '2026-01-12 13:29:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:29:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2895毫秒', '0', '', '2026-01-12 13:29:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2682毫秒', '0', '', '2026-01-12 13:29:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:29:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:29:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:30:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:30:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:30:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:30:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:30:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:30:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:30:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:30:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:30:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:30:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:30:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:30:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:30:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:30:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:30:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:30:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:31:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:31:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:31:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:31:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:31:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:31:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:31:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:31:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:31:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:31:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:31:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:31:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:31:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:31:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:31:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:31:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:31:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:31:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2894毫秒', '0', '', '2026-01-12 13:31:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:32:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:32:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:32:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:32:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:32:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:32:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:32:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:32:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2933毫秒', '0', '', '2026-01-12 13:32:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:32:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:32:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:32:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:32:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:32:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:32:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:32:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:32:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:33:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:33:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:33:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:33:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:33:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2900毫秒', '0', '', '2026-01-12 13:33:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:33:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:33:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:33:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2718毫秒', '0', '', '2026-01-12 13:33:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:33:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:33:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:33:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:33:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:33:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:33:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 13:34:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:34:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:34:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:34:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:34:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:34:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:34:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:34:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:34:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:34:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:34:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:34:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:34:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:34:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:34:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:34:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 13:34:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:34:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:34:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:34:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:35:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:35:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:35:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:35:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:35:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:35:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:35:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2934毫秒', '0', '', '2026-01-12 13:35:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:35:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:35:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2933毫秒', '0', '', '2026-01-12 13:35:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:35:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:35:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:35:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:35:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:35:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:35:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:35:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:35:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2846毫秒', '0', '', '2026-01-12 13:35:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:36:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:36:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:36:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:36:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:36:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:36:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:36:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:36:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:36:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2902毫秒', '0', '', '2026-01-12 13:36:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:36:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2761毫秒', '0', '', '2026-01-12 13:36:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:36:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:36:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:36:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2848毫秒', '0', '', '2026-01-12 13:36:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 13:36:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:36:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:36:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:36:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:37:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:37:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:37:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:37:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:37:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:37:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:37:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:37:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:37:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:37:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:37:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:37:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:37:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:37:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:37:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:37:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:37:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:37:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:37:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:37:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:38:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:38:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:38:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:38:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:38:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:38:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:38:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:38:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:38:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:38:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:38:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:38:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:38:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:38:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:38:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:38:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:38:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:38:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:38:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:38:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:39:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:39:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:39:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:39:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 13:39:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:39:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:39:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:39:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:39:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:39:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:39:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:39:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:39:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:39:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:39:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 13:39:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:39:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:39:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:39:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:39:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:40:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:40:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2933毫秒', '0', '', '2026-01-12 13:40:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:40:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:40:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:40:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:40:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:40:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:40:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:40:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:40:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:40:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:40:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:40:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:40:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:40:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:40:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2889毫秒', '0', '', '2026-01-12 13:40:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:40:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:40:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 13:41:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:41:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:41:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:41:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:41:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:41:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:41:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:41:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:41:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:41:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:41:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2933毫秒', '0', '', '2026-01-12 13:41:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:41:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:41:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:41:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:41:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:41:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:41:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:41:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:41:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2933毫秒', '0', '', '2026-01-12 13:42:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:42:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:42:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:42:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:42:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2857毫秒', '0', '', '2026-01-12 13:42:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:42:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:42:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:42:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:42:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:42:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:42:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:42:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:42:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:42:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:42:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:42:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:42:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:42:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:42:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:43:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:43:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:43:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:43:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:43:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:43:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:43:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2890毫秒', '0', '', '2026-01-12 13:43:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:43:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:43:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:43:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2933毫秒', '0', '', '2026-01-12 13:43:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (9999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:43:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:43:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 13:43:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:43:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:43:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:43:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:43:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2842毫秒', '0', '', '2026-01-12 13:43:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:44:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:44:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:44:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:44:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:44:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:44:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:44:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:44:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:44:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:44:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:44:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:44:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:44:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:44:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:44:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:44:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:44:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:44:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:44:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2861毫秒', '0', '', '2026-01-12 13:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-12 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:45:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:45:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:45:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:45:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:45:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:45:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:45:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:45:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:45:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:45:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:45:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:45:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:45:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2833毫秒', '0', '', '2026-01-12 13:45:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2948毫秒', '0', '', '2026-01-12 13:45:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 13:45:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:45:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2872毫秒', '0', '', '2026-01-12 13:45:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:45:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:45:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:46:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:46:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:46:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:46:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:46:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:46:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:46:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:46:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:46:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:46:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:46:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:46:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:46:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:46:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:46:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:46:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:46:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:46:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:46:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:46:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:47:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:47:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:47:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:47:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2933毫秒', '0', '', '2026-01-12 13:47:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:47:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:47:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:47:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:47:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:47:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:47:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:47:35'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:47:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:47:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:47:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:47:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:47:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:47:53'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:47:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:47:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:48:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:48:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:48:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:48:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:48:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:48:17'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:48:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:48:23'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:48:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:48:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:48:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:48:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2857毫秒', '0', '', '2026-01-12 13:48:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:48:41'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:48:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2910毫秒', '0', '', '2026-01-12 13:48:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:48:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:48:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:48:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:49:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:49:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:49:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:49:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2870毫秒', '0', '', '2026-01-12 13:49:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:49:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:49:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:49:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:49:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 13:49:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:49:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 13:49:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:49:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2898毫秒', '0', '', '2026-01-12 13:49:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:49:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:49:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:49:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:49:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2835毫秒', '0', '', '2026-01-12 13:49:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:49:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-12 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:50:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:50:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:50:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:50:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:50:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:50:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 13:50:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 13:50:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:50:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:50:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:50:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:50:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:50:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:50:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:50:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:50:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:50:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:50:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:50:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:51:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:51:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3010毫秒', '0', '', '2026-01-12 13:51:44'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:916毫秒', '0', '', '2026-01-12 13:51:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:51:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:51:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:51:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:51:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:52:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:52:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:52:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:52:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:52:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:52:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:52:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:52:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:52:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:52:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:52:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:52:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:52:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:52:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:52:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:52:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:52:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:52:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:52:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:52:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:53:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:53:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:53:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:53:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:53:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:53:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:53:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:53:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2891毫秒', '0', '', '2026-01-12 13:53:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:53:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:53:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:53:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:53:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:53:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:53:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:53:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:53:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:53:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:53:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:53:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:54:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:54:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:54:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:54:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:54:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 13:54:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:54:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2904毫秒', '0', '', '2026-01-12 13:54:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:54:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:54:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:54:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:54:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:54:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:54:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:54:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:54:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:54:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2901毫秒', '0', '', '2026-01-12 13:54:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:54:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:54:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:158毫秒', '0', '', '2026-01-12 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:55:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:55:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:55:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:55:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:55:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:55:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:55:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2932毫秒', '0', '', '2026-01-12 13:55:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:55:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:55:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:55:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:55:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:55:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:55:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:55:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:55:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:55:51'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:55:54'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:55:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:56:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:56:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:56:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2880毫秒', '0', '', '2026-01-12 13:56:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:56:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 13:56:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:56:18'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:56:21'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:56:24'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:56:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:56:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 13:56:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:56:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:56:39'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:56:42'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:56:45'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:56:48'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:56:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:56:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:56:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:57:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:57:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:57:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:57:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:57:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 13:57:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 13:57:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2896毫秒', '0', '', '2026-01-12 13:57:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:57:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2899毫秒', '0', '', '2026-01-12 13:57:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:57:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:57:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:57:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:57:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2908毫秒', '0', '', '2026-01-12 13:57:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 13:57:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:57:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:57:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:57:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:57:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:58:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:58:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:58:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2876毫秒', '0', '', '2026-01-12 13:58:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2912毫秒', '0', '', '2026-01-12 13:58:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:58:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 13:58:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 13:58:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:58:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:58:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 13:58:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:58:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:58:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:58:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:58:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:58:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 13:58:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2907毫秒', '0', '', '2026-01-12 13:58:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2905毫秒', '0', '', '2026-01-12 13:58:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 13:58:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 13:59:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 13:59:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:59:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:59:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2897毫秒', '0', '', '2026-01-12 13:59:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 13:59:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 13:59:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:59:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:59:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:59:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 13:59:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 13:59:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 13:59:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 13:59:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:59:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 13:59:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:59:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 13:59:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 13:59:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 13:59:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2026-01-12 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2918毫秒', '0', '', '2026-01-12 14:00:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 14:00:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 14:00:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 14:00:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 14:00:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 14:00:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 14:00:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2903毫秒', '0', '', '2026-01-12 14:00:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 14:00:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 14:00:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 14:00:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 14:00:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 14:00:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 14:00:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 14:00:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 14:00:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 14:00:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2924毫秒', '0', '', '2026-01-12 14:00:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 14:00:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2930毫秒', '0', '', '2026-01-12 14:00:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2931毫秒', '0', '', '2026-01-12 14:01:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 14:01:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 14:01:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2923毫秒', '0', '', '2026-01-12 14:01:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2911毫秒', '0', '', '2026-01-12 14:01:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2921毫秒', '0', '', '2026-01-12 14:01:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2938毫秒', '0', '', '2026-01-12 14:01:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2917毫秒', '0', '', '2026-01-12 14:01:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 14:01:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 14:01:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 14:01:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 14:01:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 14:01:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2914毫秒', '0', '', '2026-01-12 14:01:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2919毫秒', '0', '', '2026-01-12 14:01:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2906毫秒', '0', '', '2026-01-12 14:01:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 14:01:49'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 14:01:52'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2913毫秒', '0', '', '2026-01-12 14:01:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2916毫秒', '0', '', '2026-01-12 14:01:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 14:02:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 14:02:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2915毫秒', '0', '', '2026-01-12 14:02:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2929毫秒', '0', '', '2026-01-12 14:02:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2909毫秒', '0', '', '2026-01-12 14:02:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2920毫秒', '0', '', '2026-01-12 14:02:16'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 14:02:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 14:02:22'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2926毫秒', '0', '', '2026-01-12 14:02:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2818毫秒', '0', '', '2026-01-12 14:02:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2925毫秒', '0', '', '2026-01-12 14:02:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2922毫秒', '0', '', '2026-01-12 14:02:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 14:02:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2927毫秒', '0', '', '2026-01-12 14:02:40'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2845毫秒', '0', '', '2026-01-12 14:02:43'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2928毫秒', '0', '', '2026-01-12 14:02:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1870毫秒', '0', '', '2026-01-12 14:05:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2026-01-12 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-12 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:19毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:14毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:14毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 14:47:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 14:47:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 14:47:47'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-12 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:18毫秒', '0', '', '2026-01-12 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2026-01-12 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2026-01-12 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2026-01-12 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:15毫秒', '0', '', '2026-01-12 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-12 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-12 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2026-01-12 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2026-01-12 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-12 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:116毫秒', '0', '', '2026-01-12 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-12 16:05:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-12 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2026-01-12 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-12 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:118毫秒', '0', '', '2026-01-12 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-12 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:114毫秒', '0', '', '2026-01-12 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:112毫秒', '0', '', '2026-01-12 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-12 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:110毫秒', '0', '', '2026-01-12 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-12 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:113毫秒', '0', '', '2026-01-12 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:41毫秒', '0', '', '2026-01-12 18:06:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:14毫秒', '0', '', '2026-01-12 18:06:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:14毫秒', '0', '', '2026-01-12 18:06:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:36'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:16毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 18:06:37'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-12 18:06:38'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-12 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-12 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-12 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-12 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-12 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2026-01-12 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-12 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-12 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-12 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-12 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-12 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-12 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-12 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-12 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-12 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-12 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-12 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-12 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-12 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-12 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-12 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-12 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-12 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-12 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-12 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-12 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-12 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-12 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-12 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-12 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-12 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-12 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-12 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-12 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2026-01-13 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-13 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-13 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-13 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-13 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-13 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10561, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:130毫秒', '0', '', '2026-01-13 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-13 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-13 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-13 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-13 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-13 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-13 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-13 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-13 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-13 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-13 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-13 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-13 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-13 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-13 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-13 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-13 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2026-01-13 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-13 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-13 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2026-01-13 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-13 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:163毫秒', '0', '', '2026-01-13 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:149毫秒', '0', '', '2026-01-13 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-13 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-13 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:31:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10678, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:112毫秒', '0', '', '2026-01-13 10:31:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:31:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:31:55'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:56'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-13 10:31:57'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:58'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:31:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:31:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:31:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-13 10:31:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-13 10:31:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:31:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:31:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:31:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:31:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-13 10:32:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-13 10:32:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-13 10:32:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:32:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:02'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-13 10:32:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-13 10:32:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-13 10:32:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-13 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-13 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-13 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:142毫秒', '0', '', '2026-01-13 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-13 18:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-13 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (10999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-13 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2026-01-13 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-13 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-13 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-13 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-13 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-13 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-13 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-13 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-13 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-13 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-14 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11050, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:126毫秒', '0', '', '2026-01-14 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2026-01-14 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2026-01-14 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-14 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-14 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-14 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-14 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-14 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2026-01-14 09:30:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 09:30:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11157, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:4868毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:28'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:30'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:31'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-14 09:30:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:33'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11316, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-14 09:30:34'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-14 10:03:29'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11324, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:106毫秒', '0', '', '2026-01-14 10:03:32'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-14 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-14 10:05:27'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-14 10:05:46'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11329, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:106毫秒', '0', '', '2026-01-14 10:05:50'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-14 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2026-01-14 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:95毫秒', '0', '', '2026-01-14 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:109毫秒', '0', '', '2026-01-14 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2026-01-14 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2026-01-14 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 13:45:25'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-14 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-14 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-14 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-14 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-14 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-14 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-14 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1001毫秒', '0', '', '2026-01-14 16:45:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-14 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-14 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-14 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2026-01-14 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2026-01-14 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2026-01-14 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2026-01-14 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-14 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:111毫秒', '0', '', '2026-01-14 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-14 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-14 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-14 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-14 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-14 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-14 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-14 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-14 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-15 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-15 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-15 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-15 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-15 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11516, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:191毫秒', '0', '', '2026-01-15 01:00:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-15 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2026-01-15 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-15 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-15 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-15 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-15 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-15 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:149毫秒', '0', '', '2026-01-15 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11605, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-15 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-15 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-15 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-15 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-15 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-15 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:148毫秒', '0', '', '2026-01-15 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:26毫秒', '0', '', '2026-01-15 12:33:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11656, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:2781毫秒', '0', '', '2026-01-15 12:33:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-15 12:33:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:03'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:12毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:07'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:38毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:08'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:09'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:50毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:10'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:11'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:9毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:12'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 12:33:13'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:14'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:33:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 12:33:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:31毫秒', '0', '', '2026-01-15 12:33:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:33:15'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:0毫秒', '0', '', '2026-01-15 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:190毫秒', '0', '', '2026-01-15 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-15 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-15 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-15 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:144毫秒', '0', '', '2026-01-15 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-15 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-15 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-15 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2026-01-15 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11894, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-15 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:147毫秒', '0', '', '2026-01-15 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:150毫秒', '0', '', '2026-01-15 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-15 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:96毫秒', '0', '', '2026-01-15 15:15:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:138毫秒', '0', '', '2026-01-15 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-15 15:40:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 15:45:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:13毫秒', '0', '', '2026-01-15 15:50:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 15:55:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 16:00:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:448毫秒', '0', '', '2026-01-15 16:05:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 16:10:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2026-01-15 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 16:40:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 16:45:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 16:50:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:108毫秒', '0', '', '2026-01-15 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2026-01-15 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-15 17:05:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 17:10:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2026-01-15 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 17:20:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 17:25:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-15 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 17:35:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2026-01-15 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 17:45:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2026-01-15 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2026-01-15 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-15 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 18:05:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-15 18:15:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-15 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-15 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-15 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-15 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-15 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-15 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-15 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-15 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-15 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:136毫秒', '0', '', '2026-01-15 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (11999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-15 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-15 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-15 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-15 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-15 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-15 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-15 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-15 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-15 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12027, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:132毫秒', '0', '', '2026-01-16 01:00:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:137毫秒', '0', '', '2026-01-16 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-16 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-16 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:139毫秒', '0', '', '2026-01-16 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-16 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-16 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:134毫秒', '0', '', '2026-01-16 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:141毫秒', '0', '', '2026-01-16 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:135毫秒', '0', '', '2026-01-16 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:128毫秒', '0', '', '2026-01-16 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12098, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12099, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-16 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12100, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12101, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12102, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12103, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12104, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12105, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12106, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12107, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12108, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12109, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12110, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12111, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12112, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12113, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12114, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12115, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12116, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12117, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12118, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12119, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12120, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12121, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12122, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:133毫秒', '0', '', '2026-01-16 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12123, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12124, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12125, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12126, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12127, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12128, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:132毫秒', '0', '', '2026-01-16 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12129, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12130, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:129毫秒', '0', '', '2026-01-16 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12131, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12132, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:130毫秒', '0', '', '2026-01-16 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12133, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:131毫秒', '0', '', '2026-01-16 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12134, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-16 09:55:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12135, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 10:00:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12136, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 10:05:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12137, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 10:10:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12138, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 10:15:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12139, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12140, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12141, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12142, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12143, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-16 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12144, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:146毫秒', '0', '', '2026-01-16 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12145, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 10:50:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12146, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 10:55:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12147, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 11:00:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12148, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:18毫秒', '0', '', '2026-01-16 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12149, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12150, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-16 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12151, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12152, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12153, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12154, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12155, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12156, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 11:45:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12157, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12158, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12159, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12160, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12161, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-16 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12162, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 12:15:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12163, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 12:20:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12164, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-16 12:25:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12165, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12166, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12167, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12168, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 12:45:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12169, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 12:50:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12170, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 12:55:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12171, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12172, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12173, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12174, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12175, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12176, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 13:25:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12177, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 13:30:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12178, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 13:35:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12179, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12180, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 13:45:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12181, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 13:50:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12182, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12183, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12184, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 14:05:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12185, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12186, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12187, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12188, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12189, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12190, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12191, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 14:40:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12192, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 14:45:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12193, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-16 14:50:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12194, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 14:55:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12195, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 15:00:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12196, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:52毫秒', '0', '', '2026-01-16 15:05:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12197, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12198, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12199, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12200, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12201, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12202, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-16 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12203, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-16 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12204, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12205, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12206, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12207, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-16 16:00:20'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12208, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12209, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12210, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 16:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12211, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12212, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12213, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12214, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12215, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:51毫秒', '0', '', '2026-01-16 16:40:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12216, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12217, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12218, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12219, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12220, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-16 17:05:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12221, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 17:10:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12222, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 17:15:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12223, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-16 17:20:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12224, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-16 17:25:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12225, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12226, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-16 17:35:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12227, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12228, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12229, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12230, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12231, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12232, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12233, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12234, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12235, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12236, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12237, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12238, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12239, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12240, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12241, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12242, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12243, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12244, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12245, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12246, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12247, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12248, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12249, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12250, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12251, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12252, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12253, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12254, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12255, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12256, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12257, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12258, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12259, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12260, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12261, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12262, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12263, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12264, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12265, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12266, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12267, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12268, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12269, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12270, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12271, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12272, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12273, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12274, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12275, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12276, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12277, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12278, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12279, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12280, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12281, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12282, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12283, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-16 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12284, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12285, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12286, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12287, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12288, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12289, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12290, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12291, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12292, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-16 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12293, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12294, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12295, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12296, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12297, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12298, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12299, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12300, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12301, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12302, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-16 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12303, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12304, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12305, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12306, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12307, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12308, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12309, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12310, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12311, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12312, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12313, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12314, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12315, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12316, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:140毫秒', '0', '', '2026-01-17 01:00:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12317, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12318, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12319, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12320, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12321, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12322, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12323, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12324, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12325, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12326, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12327, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12328, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12329, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12330, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12331, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12332, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12333, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12334, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12335, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12336, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12337, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12338, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12339, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12340, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12341, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12342, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12343, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12344, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12345, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12346, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12347, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12348, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12349, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12350, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12351, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12352, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12353, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12354, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12355, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12356, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12357, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12358, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12359, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12360, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12361, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12362, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12363, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12364, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12365, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12366, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12367, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12368, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12369, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12370, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12371, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12372, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12373, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12374, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12375, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12376, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12377, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12378, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12379, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12380, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12381, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12382, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12383, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12384, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12385, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12386, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12387, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12388, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12389, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12390, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12391, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12392, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12393, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12394, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12395, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12396, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12397, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12398, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12399, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12400, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12401, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12402, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12403, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12404, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12405, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12406, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12407, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12408, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12409, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12410, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-17 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12411, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12412, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12413, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12414, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12415, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12416, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12417, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12418, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12419, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12420, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12421, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12422, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12423, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12424, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:286毫秒', '0', '', '2026-01-17 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12425, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:8毫秒', '0', '', '2026-01-17 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12426, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-17 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12427, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-17 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12428, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-17 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12429, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-17 10:25:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12430, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-17 10:30:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12431, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12432, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-17 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12433, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12434, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-17 10:50:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12435, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12436, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12437, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12438, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12439, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:89毫秒', '0', '', '2026-01-17 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12440, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12441, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-17 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12442, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12443, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-17 11:35:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12444, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12445, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12446, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-17 11:50:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12447, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12448, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12449, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-17 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12450, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12451, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12452, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12453, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12454, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12455, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12456, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-17 12:40:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12457, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12458, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12459, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12460, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12461, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-17 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12462, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-17 13:10:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12463, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12464, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12465, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12466, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12467, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 13:34:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12468, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 13:39:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12469, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 13:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12470, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12471, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12472, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12473, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-17 14:05:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12474, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12475, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:40毫秒', '0', '', '2026-01-17 14:15:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12476, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 14:20:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12477, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-17 14:25:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12478, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-17 14:29:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12479, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 14:34:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12480, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-17 14:39:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12481, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 14:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12482, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12483, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12484, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-17 15:00:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12485, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-17 15:05:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12486, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-17 15:10:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12487, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 15:15:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12488, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 15:20:19'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12489, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12490, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 15:30:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12491, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12492, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12493, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 15:45:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12494, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12495, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12496, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12497, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 16:05:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12498, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-17 16:10:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12499, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-17 16:15:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12500, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12501, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 16:24:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12502, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-17 16:29:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12503, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 16:34:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12504, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12505, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 16:44:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12506, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12507, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 16:55:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12508, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-17 17:00:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12509, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 17:05:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12510, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 17:10:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12511, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 17:15:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12512, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12513, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 17:24:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12514, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 17:30:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12515, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-17 17:35:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12516, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12517, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12518, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12519, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 17:54:59'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12520, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-17 18:00:04'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12521, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12522, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12523, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12524, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12525, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12526, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12527, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12528, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12529, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12530, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12531, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12532, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12533, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12534, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12535, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12536, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12537, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12538, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12539, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12540, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12541, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12542, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12543, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12544, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12545, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12546, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12547, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12548, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12549, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12550, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12551, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12552, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12553, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12554, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12555, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12556, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12557, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12558, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12559, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12560, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12561, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12562, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12563, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12564, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12565, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12566, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12567, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12568, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12569, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12570, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12571, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12572, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12573, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12574, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12575, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12576, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12577, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12578, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12579, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12580, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12581, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12582, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12583, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12584, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12585, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12586, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12587, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12588, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12589, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12590, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-17 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12591, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-17 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12592, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-18 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12593, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12594, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12595, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12596, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12597, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12598, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12599, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12600, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12601, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12602, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12603, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12604, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12605, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:130毫秒', '0', '', '2026-01-18 01:00:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12606, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12607, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12608, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12609, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12610, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12611, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12612, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12613, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12614, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12615, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12616, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12617, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12618, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12619, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12620, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12621, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12622, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12623, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12624, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12625, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12626, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12627, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12628, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12629, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12630, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12631, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12632, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12633, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12634, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12635, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12636, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12637, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12638, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12639, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12640, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12641, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12642, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12643, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12644, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12645, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12646, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12647, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12648, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12649, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12650, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12651, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12652, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12653, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12654, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12655, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12656, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12657, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12658, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12659, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-18 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12660, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12661, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12662, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12663, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12664, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12665, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12666, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12667, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12668, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12669, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12670, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12671, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12672, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12673, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12674, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12675, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12676, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12677, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12678, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12679, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12680, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12681, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12682, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12683, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12684, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12685, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12686, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12687, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12688, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12689, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12690, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12691, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12692, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12693, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12694, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12695, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12696, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12697, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12698, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12699, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12700, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12701, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12702, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12703, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12704, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12705, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12706, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12707, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12708, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12709, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12710, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12711, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12712, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12713, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12714, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12715, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12716, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12717, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12718, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12719, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12720, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12721, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12722, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12723, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12724, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12725, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12726, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12727, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12728, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12729, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12730, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12731, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12732, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12733, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-18 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12734, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12735, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12736, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12737, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12738, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12739, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12740, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12741, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12742, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12743, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12744, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12745, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12746, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12747, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12748, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12749, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12750, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12751, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12752, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12753, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12754, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12755, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12756, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12757, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12758, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12759, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12760, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12761, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12762, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12763, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12764, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12765, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12766, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12767, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12768, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12769, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12770, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12771, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12772, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 14:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12773, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 15:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12774, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 15:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12775, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12776, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12777, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12778, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-18 15:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12779, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 15:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12780, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12781, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12782, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12783, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12784, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12785, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12786, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12787, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12788, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:15:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12789, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12790, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12791, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12792, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12793, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12794, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12795, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12796, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12797, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12798, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12799, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12800, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12801, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12802, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12803, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12804, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12805, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12806, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12807, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12808, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 17:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12809, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 18:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12810, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 18:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12811, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:3毫秒', '0', '', '2026-01-18 18:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12812, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 18:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12813, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 18:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12814, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 18:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12815, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 18:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12816, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 18:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12817, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 18:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12818, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 18:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12819, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 18:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12820, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 18:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12821, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 19:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12822, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 19:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12823, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 19:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12824, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 19:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12825, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 19:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12826, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 19:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12827, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 19:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12828, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 19:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12829, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 19:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12830, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 19:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12831, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 19:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12832, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 19:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12833, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 20:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12834, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 20:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12835, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 20:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12836, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 20:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12837, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 20:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12838, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 20:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12839, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 20:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12840, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 20:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12841, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 20:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12842, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 20:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12843, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 20:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12844, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 20:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12845, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 21:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12846, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 21:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12847, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 21:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12848, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 21:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12849, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 21:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12850, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 21:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12851, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 21:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12852, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 21:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12853, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 21:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12854, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 21:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12855, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 21:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12856, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 21:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12857, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 22:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12858, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 22:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12859, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 22:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12860, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 22:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12861, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 22:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12862, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 22:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12863, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 22:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12864, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 22:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12865, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 22:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12866, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 22:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12867, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 22:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12868, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 22:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12869, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 23:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12870, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 23:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12871, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 23:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12872, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 23:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12873, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 23:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12874, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 23:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12875, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 23:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12876, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 23:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12877, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 23:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12878, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 23:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12879, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-18 23:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12880, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-18 23:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12881, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 00:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12882, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 00:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12883, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 00:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12884, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 00:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12885, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 00:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12886, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 00:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12887, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 00:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12888, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 00:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12889, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 00:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12890, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 00:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12891, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 00:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12892, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 00:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12893, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 01:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12894, '数据库备份定时清理', 'SYSTEM', 'DbBackupCleanTask.clean', '数据库备份定时清理 总共耗时:140毫秒', '0', '', '2026-01-19 01:00:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12895, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 01:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12896, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 01:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12897, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 01:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12898, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 01:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12899, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 01:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12900, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 01:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12901, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 01:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12902, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 01:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12903, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 01:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12904, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 01:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12905, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 01:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12906, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 02:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12907, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 02:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12908, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 02:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12909, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 02:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12910, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 02:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12911, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 02:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12912, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 02:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12913, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 02:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12914, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 02:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12915, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 02:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12916, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 02:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12917, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 02:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12918, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 03:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12919, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 03:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12920, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 03:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12921, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 03:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12922, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 03:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12923, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 03:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12924, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 03:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12925, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 03:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12926, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 03:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12927, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 03:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12928, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 03:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12929, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 03:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12930, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 04:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12931, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 04:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12932, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 04:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12933, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 04:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12934, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 04:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12935, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 04:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12936, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 04:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12937, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 04:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12938, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 04:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12939, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 04:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12940, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 04:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12941, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 04:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12942, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 05:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12943, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 05:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12944, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 05:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12945, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 05:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12946, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 05:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12947, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 05:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12948, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 05:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12949, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 05:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12950, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 05:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12951, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 05:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12952, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 05:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12953, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 05:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12954, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 06:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12955, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 06:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12956, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 06:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12957, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 06:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12958, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 06:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12959, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 06:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12960, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 06:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12961, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 06:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12962, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 06:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12963, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 06:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12964, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 06:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12965, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 06:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12966, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 07:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12967, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 07:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12968, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 07:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12969, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 07:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12970, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 07:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12971, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 07:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12972, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 07:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12973, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 07:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12974, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 07:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12975, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 07:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12976, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 07:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12977, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 07:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12978, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 08:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12979, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 08:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12980, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 08:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12981, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 08:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12982, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 08:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12983, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 08:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12984, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 08:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12985, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 08:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12986, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 08:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12987, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 08:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12988, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 08:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12989, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 08:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12990, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 09:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12991, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 09:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12992, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 09:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12993, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 09:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12994, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 09:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12995, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 09:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12996, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 09:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12997, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 09:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12998, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 09:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (12999, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 09:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13000, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 09:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13001, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 09:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13002, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 10:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13003, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 10:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13004, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 10:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13005, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 10:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13006, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 10:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13007, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 10:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13008, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 10:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13009, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 10:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13010, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 10:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13011, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 10:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13012, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 10:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13013, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 10:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13014, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 11:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13015, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 11:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13016, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 11:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13017, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 11:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13018, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 11:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13019, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 11:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13020, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 11:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13021, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 11:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13022, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 11:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13023, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 11:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13024, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 11:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13025, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 11:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13026, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 12:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13027, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 12:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13028, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 12:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13029, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 12:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13030, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 12:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13031, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 12:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13032, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 12:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13033, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 12:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13034, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 12:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13035, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 12:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13036, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 12:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13037, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 12:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13038, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:2毫秒', '0', '', '2026-01-19 13:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13039, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:1毫秒', '0', '', '2026-01-19 13:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13040, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:145毫秒', '0', '', '2026-01-19 13:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13041, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2026-01-19 13:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13042, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2026-01-19 13:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13043, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-19 13:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13044, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:143毫秒', '0', '', '2026-01-19 13:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13045, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-19 13:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13046, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:140毫秒', '0', '', '2026-01-19 13:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13047, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2026-01-19 13:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13048, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-19 13:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13049, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-19 13:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13050, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-19 14:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13051, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:107毫秒', '0', '', '2026-01-19 14:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13052, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-19 14:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13053, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-19 14:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13054, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2026-01-19 14:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13055, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-19 14:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13056, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-19 14:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13057, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2026-01-19 14:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13058, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:85毫秒', '0', '', '2026-01-19 14:40:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13059, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:10毫秒', '0', '', '2026-01-19 14:45:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13060, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:48毫秒', '0', '', '2026-01-19 14:50:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13061, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:11毫秒', '0', '', '2026-01-19 14:55:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13062, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-19 15:00:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13063, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-19 15:05:26'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13064, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2026-01-19 15:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13065, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:106毫秒', '0', '', '2026-01-19 15:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13066, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2026-01-19 15:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13067, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-19 15:25:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13068, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-19 15:30:06'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13069, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-19 15:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13070, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2026-01-19 15:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13071, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:105毫秒', '0', '', '2026-01-19 15:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13072, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2026-01-19 15:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13073, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2026-01-19 15:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13074, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2026-01-19 16:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13075, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:101毫秒', '0', '', '2026-01-19 16:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13076, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:100毫秒', '0', '', '2026-01-19 16:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13077, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:92毫秒', '0', '', '2026-01-19 16:15:01'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13078, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2026-01-19 16:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13079, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:104毫秒', '0', '', '2026-01-19 16:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13080, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2026-01-19 16:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13081, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:93毫秒', '0', '', '2026-01-19 16:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13082, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:6毫秒', '0', '', '2026-01-19 16:40:05'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13083, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2026-01-19 16:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13084, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2026-01-19 16:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13085, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2026-01-19 16:55:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13086, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-19 17:00:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13087, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-19 17:05:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13088, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:5毫秒', '0', '', '2026-01-19 17:10:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13089, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2026-01-19 17:15:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13090, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2026-01-19 17:20:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13091, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-19 17:25:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13092, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:102毫秒', '0', '', '2026-01-19 17:30:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13093, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2026-01-19 17:35:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13094, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:103毫秒', '0', '', '2026-01-19 17:40:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13095, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:4毫秒', '0', '', '2026-01-19 17:45:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13096, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:102毫秒', '0', '', '2026-01-19 17:50:00'); INSERT INTO `sys_job_log` (`job_log_id`, `job_name`, `job_group`, `invoke_target`, `job_message`, `status`, `exception_info`, `create_time`) VALUES (13097, '系统消息&通知公告&热点定时发送', 'SYSTEM', 'InformationTask.sendMessage', '系统消息&通知公告&热点定时发送 总共耗时:7毫秒', '0', '', '2026-01-19 17:55:00'); COMMIT; -- ---------------------------- -- Table structure for sys_logininfor -- ---------------------------- DROP TABLE IF EXISTS `sys_logininfor`; CREATE TABLE `sys_logininfor` ( `info_id` bigint NOT NULL AUTO_INCREMENT COMMENT '访问ID', `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `user_name` varchar(50) DEFAULT '' COMMENT '用户账号', `ipaddr` varchar(128) DEFAULT '' COMMENT '登录IP地址', `status` char(1) DEFAULT '0' COMMENT '登录状态(0成功 1失败)', `msg` varchar(255) DEFAULT '' COMMENT '提示信息', `access_time` datetime DEFAULT NULL COMMENT '访问时间', PRIMARY KEY (`info_id`), KEY `idx_sys_logininfor_s` (`status`), KEY `idx_sys_logininfor_lt` (`access_time`) ) ENGINE=InnoDB AUTO_INCREMENT=2899 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统访问记录'; -- ---------------------------- -- Records of sys_logininfor -- ---------------------------- BEGIN; INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (100, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:04:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (101, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:05:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (102, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:05:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (103, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:08:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (104, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:08:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (105, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:08:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (106, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:09:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (107, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:09:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (108, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:10:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (109, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:11:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (110, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:11:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (111, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:11:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (112, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:16:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (113, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:16:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (114, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:16:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (115, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:22:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (116, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:22:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (117, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:27:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (118, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:30:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (119, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:35:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (120, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:36:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (121, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:56:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (122, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:56:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (123, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-21 18:56:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (124, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-21 18:56:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (125, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-22 09:28:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (126, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-22 10:12:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (127, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-22 10:19:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (128, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-22 10:38:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (129, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-22 10:38:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (130, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-22 10:50:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (131, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-22 11:22:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (132, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-22 12:06:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (133, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-22 12:06:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (134, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-22 12:45:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (135, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-22 12:46:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (136, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-23 10:03:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (137, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-23 10:06:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (138, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-23 10:19:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (139, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-23 10:20:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (140, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-23 10:21:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (141, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-23 10:21:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (142, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-23 11:40:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (143, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-23 11:46:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (144, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-23 14:14:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (145, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-24 09:31:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (146, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-24 09:59:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (147, NULL, 'admin', '113.132.46.245', '0', '登录成功', '2025-10-24 10:05:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (148, NULL, 'admin', '113.132.46.245', '0', '退出成功', '2025-10-24 10:07:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (149, NULL, 'admin', '123.138.31.198', '0', '登录成功', '2025-10-24 10:07:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (150, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-24 10:31:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (151, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-24 10:46:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (152, NULL, 'yzadmin', '127.0.0.1', '0', '退出成功', '2025-10-24 16:47:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (153, NULL, 'yzadmin', '127.0.0.1', '0', '退出成功', '2025-10-24 16:47:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (154, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-24 16:47:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (155, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-25 09:47:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (156, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-25 10:07:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (157, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-25 14:14:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (158, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-10-25 14:14:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (159, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-25 16:12:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (160, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-25 20:40:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (161, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-26 14:22:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (162, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-26 14:37:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (163, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-26 21:21:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (164, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 09:30:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (165, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 10:38:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (166, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 10:42:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (167, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 10:46:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (168, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 11:02:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (169, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-27 14:12:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (170, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 14:24:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (171, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-27 14:25:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (172, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 14:25:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (173, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-27 14:27:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (174, NULL, '13388880001', '127.0.0.1', '0', '登录成功', '2025-10-27 14:27:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (175, NULL, 'mgr1', '127.0.0.1', '0', '退出成功', '2025-10-27 14:50:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (176, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 14:50:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (177, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-27 14:50:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (178, NULL, '13388880001', '127.0.0.1', '0', '登录成功', '2025-10-27 14:50:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (179, NULL, 'mgr1', '127.0.0.1', '0', '退出成功', '2025-10-27 14:56:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (180, NULL, '15666666666', '127.0.0.1', '0', '登录成功', '2025-10-27 14:57:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (181, NULL, '张三', '127.0.0.1', '0', '退出成功', '2025-10-27 14:57:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (182, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 14:57:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (183, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-27 15:01:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (184, NULL, '15666666666', '127.0.0.1', '0', '登录成功', '2025-10-27 15:01:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (185, NULL, '张三', '127.0.0.1', '0', '退出成功', '2025-10-27 15:23:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (186, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 15:23:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (187, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-27 15:26:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (188, NULL, '15666666666', '127.0.0.1', '0', '登录成功', '2025-10-27 15:26:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (189, NULL, '张三', '127.0.0.1', '0', '退出成功', '2025-10-27 15:26:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (190, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 15:26:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (191, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-27 15:32:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (192, NULL, '15666666666', '127.0.0.1', '0', '登录成功', '2025-10-27 15:32:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (193, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 15:43:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (194, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 15:47:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (195, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-27 16:26:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (196, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 16:26:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (197, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-27 22:14:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (198, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 01:37:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (199, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-28 01:41:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (200, NULL, '13388880001', '127.0.0.1', '0', '登录成功', '2025-10-28 01:42:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (201, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 09:27:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (202, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 09:47:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (203, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-28 09:47:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (204, NULL, '15666666666', '127.0.0.1', '0', '登录成功', '2025-10-28 09:49:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (205, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-10-28 10:04:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (206, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 10:04:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (207, NULL, '张三', '127.0.0.1', '0', '退出成功', '2025-10-28 11:02:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (208, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 11:02:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (209, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-28 11:03:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (210, NULL, '15666666666', '127.0.0.1', '0', '登录成功', '2025-10-28 11:03:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (211, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 12:00:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (212, NULL, '张三', '127.0.0.1', '0', '退出成功', '2025-10-28 14:45:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (213, NULL, '15666666666', '127.0.0.1', '0', '登录成功', '2025-10-28 14:45:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (214, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 17:29:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (215, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 18:05:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (216, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-28 18:06:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (217, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-28 18:18:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (218, NULL, '15666666666', '127.0.0.1', '0', '登录成功', '2025-10-28 18:19:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (219, NULL, '张三', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-10-28 18:21:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (220, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-28 18:21:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (221, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-28 18:21:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (222, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 18:26:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (223, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 18:58:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (224, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-10-28 23:45:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (225, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-28 23:46:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (226, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 09:12:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (227, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 09:15:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (228, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 09:17:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (229, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 09:22:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (230, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 09:28:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (231, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 09:32:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (232, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 09:33:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (233, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 09:46:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (234, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 09:46:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (235, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 09:46:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (236, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 09:46:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (237, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:09:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (238, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:09:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (239, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:09:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (240, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:11:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (241, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:12:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (242, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:20:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (243, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:21:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (244, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:21:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (245, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:29:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (246, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:30:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (247, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:32:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (248, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:32:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (249, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:34:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (250, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:34:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (251, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:34:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (252, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:35:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (253, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:46:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (254, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:46:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (255, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:47:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (256, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:47:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (257, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:48:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (258, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:49:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (259, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 10:49:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (260, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 10:57:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (261, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 11:33:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (262, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 11:33:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (263, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 11:34:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (264, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 11:34:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (265, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 11:36:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (266, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 11:36:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (267, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 11:39:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (268, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 11:39:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (269, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 11:41:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (270, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 11:41:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (271, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 11:44:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (272, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 11:44:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (273, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 11:47:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (274, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 11:53:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (275, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 11:53:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (276, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-29 11:59:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (277, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 14:17:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (278, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 20:37:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (279, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-29 23:41:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (280, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 08:55:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (281, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 09:22:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (282, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 09:24:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (283, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 10:26:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (284, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 10:26:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (285, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 10:27:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (286, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 10:27:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (287, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 15:01:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (288, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 15:01:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (289, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 15:05:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (290, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 15:06:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (291, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 15:28:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (292, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 15:33:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (293, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 16:57:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (294, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 16:57:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (295, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 17:02:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (296, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 17:02:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (297, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 17:13:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (298, NULL, '13388880001', '127.0.0.1', '0', '登录成功', '2025-10-30 17:13:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (299, NULL, '李四', '127.0.0.1', '0', '退出成功', '2025-10-30 17:13:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (300, NULL, '13388880002', '127.0.0.1', '0', '登录成功', '2025-10-30 17:14:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (301, NULL, '王五', '127.0.0.1', '0', '退出成功', '2025-10-30 17:25:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (302, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 17:25:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (303, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 17:26:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (304, NULL, '13388880002', '127.0.0.1', '0', '登录成功', '2025-10-30 17:26:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (305, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 17:39:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (306, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 18:22:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (307, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 20:17:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (308, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 20:20:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (309, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 20:20:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (310, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 20:30:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (311, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 20:30:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (312, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 20:32:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (313, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 20:32:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (314, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 21:53:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (315, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 22:09:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (316, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-10-30 22:11:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (317, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-30 22:11:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (318, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-30 22:48:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (319, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 22:50:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (320, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-30 23:44:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (321, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-10-30 23:46:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (322, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-30 23:46:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (323, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-30 23:47:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (324, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-10-30 23:48:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (325, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-30 23:48:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (326, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-30 23:48:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (327, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-31 09:36:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (328, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-31 09:48:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (329, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-31 10:54:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (330, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-31 11:08:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (331, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-31 17:06:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (332, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-31 17:09:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (333, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-10-31 21:51:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (334, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-10-31 22:48:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (335, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-10-31 22:49:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (336, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 09:55:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (337, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 09:56:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (338, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 11:42:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (339, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 11:42:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (340, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 11:55:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (341, NULL, '13122222222', '127.0.0.1', '0', '登录成功', '2025-11-01 11:56:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (342, NULL, '张三丰', '127.0.0.1', '0', '退出成功', '2025-11-01 11:57:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (343, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 11:58:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (344, NULL, 'admin', '127.0.0.1', '1', '密码输入错误1次', '2025-11-01 11:58:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (345, NULL, '13122222222', '127.0.0.1', '0', '登录成功', '2025-11-01 11:58:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (346, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 11:58:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (347, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 12:01:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (348, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 12:01:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (349, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 14:12:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (350, NULL, '张三丰', '127.0.0.1', '0', '退出成功', '2025-11-01 14:16:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (351, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 14:16:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (352, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 14:17:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (353, NULL, '13122222222', '127.0.0.1', '0', '登录成功', '2025-11-01 14:26:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (354, NULL, '张三丰', '127.0.0.1', '0', '退出成功', '2025-11-01 14:39:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (355, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 14:39:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (356, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 15:11:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (357, NULL, '13122222222', '127.0.0.1', '0', '登录成功', '2025-11-01 15:12:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (358, NULL, '张三丰', '127.0.0.1', '0', '退出成功', '2025-11-01 15:13:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (359, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 15:13:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (360, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 16:35:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (361, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 16:35:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (362, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 17:38:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (363, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 18:11:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (364, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 18:15:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (365, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 18:15:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (366, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 18:17:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (367, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 18:18:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (368, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 18:19:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (369, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 18:23:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (370, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 18:25:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (371, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 18:26:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (372, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 18:26:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (373, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-01 18:32:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (374, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 18:32:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (375, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-01 21:15:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (376, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-01 21:28:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (377, NULL, '张三', '0:0:0:0:0:0:0:1%0', '1', '密码输入错误1次', '2025-11-01 21:31:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (378, NULL, '张三', '127.0.0.1', '1', '密码输入错误2次', '2025-11-01 21:32:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (379, NULL, '李四', '0:0:0:0:0:0:0:1%0', '1', '密码输入错误1次', '2025-11-01 21:32:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (380, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-01 21:33:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (381, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 21:42:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (382, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-01 21:45:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (383, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-01 21:51:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (384, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-01 21:51:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (385, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 21:59:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (386, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-01 21:59:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (387, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 22:18:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (388, NULL, '15202903073', '127.0.0.1', '0', '登录成功', '2025-11-01 22:19:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (389, NULL, '杨飞虎', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-01 22:32:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (390, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-01 22:32:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (391, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-01 23:58:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (392, NULL, '15202903073', '127.0.0.1', '0', '登录成功', '2025-11-01 23:59:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (393, NULL, '杨飞虎', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-02 00:01:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (394, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-02 00:01:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (395, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-02 00:05:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (396, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-02 00:06:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (397, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-02 09:23:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (398, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-02 09:23:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (399, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-02 11:52:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (400, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-02 12:06:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (401, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-02 14:04:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (402, 13, '13433333333', '127.0.0.1', '0', '登录成功', '2025-11-02 14:05:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (403, NULL, '天龙真人', '127.0.0.1', '0', '退出成功', '2025-11-02 14:07:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (404, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-02 14:07:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (405, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-02 15:02:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (406, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-02 16:25:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (407, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-02 16:26:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (408, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-02 17:37:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (409, NULL, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-02 18:05:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (410, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-02 18:09:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (411, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-02 18:10:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (412, NULL, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-02 18:16:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (413, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-02 19:18:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (414, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-02 19:20:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (415, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-02 19:20:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (416, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 09:14:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (417, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 09:26:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (418, NULL, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 09:29:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (419, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 09:50:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (420, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-03 10:18:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (421, 13, '13433333333', '127.0.0.1', '0', '登录成功', '2025-11-03 10:19:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (422, 13, '天龙真人', '127.0.0.1', '0', '退出成功', '2025-11-03 10:29:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (423, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 11:01:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (424, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 12:00:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (425, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-03 14:53:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (426, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 14:56:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (427, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-03 15:00:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (428, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 15:00:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (429, 11, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-03 15:00:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (430, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 15:00:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (431, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 15:02:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (432, 13, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-03 15:03:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (433, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 15:03:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (434, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-03 15:07:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (435, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2025-11-03 15:07:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (436, 2, '李四', '127.0.0.1', '0', '退出成功', '2025-11-03 15:08:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (437, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-11-03 15:08:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (438, 1, '张三', '127.0.0.1', '0', '退出成功', '2025-11-03 15:08:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (439, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 15:08:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (440, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-03 15:09:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (441, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-11-03 15:09:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (442, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 16:26:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (443, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 17:49:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (444, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-03 18:09:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (445, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-03 18:10:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (446, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-03 18:12:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (447, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 18:13:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (448, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-03 18:13:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (449, 13, '13433333333', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-03 18:13:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (450, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-03 18:21:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (451, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-04 09:48:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (452, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-04 17:11:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (453, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-04 17:50:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (454, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-04 17:50:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (455, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-04 19:02:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (456, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-05 09:17:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (457, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-05 09:32:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (458, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-05 10:15:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (459, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-05 11:26:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (460, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-05 11:33:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (461, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-05 14:58:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (462, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-05 16:51:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (463, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-05 18:11:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (464, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-05 18:12:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (465, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-05 18:12:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (466, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-06 09:21:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (467, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-06 09:47:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (468, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-06 10:07:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (469, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-06 13:04:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (470, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-06 13:04:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (471, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-06 13:55:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (472, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-06 14:33:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (473, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-06 18:23:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (474, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-07 09:30:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (475, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-07 09:35:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (476, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-07 09:35:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (477, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-07 10:45:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (478, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-07 15:57:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (479, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-07 16:28:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (480, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-07 18:55:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (481, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-07 18:56:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (482, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-07 19:11:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (483, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-07 19:12:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (484, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-08 09:32:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (485, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-08 09:44:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (486, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-08 09:44:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (487, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-08 10:06:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (488, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-08 11:04:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (489, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2025-11-08 11:05:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (490, 2, '李四', '127.0.0.1', '0', '退出成功', '2025-11-08 11:38:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (491, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-08 11:38:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (492, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-08 17:36:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (493, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-08 22:21:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (494, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-08 23:58:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (495, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-10 09:16:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (496, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-10 09:35:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (497, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-10 10:50:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (498, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-10 14:12:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (499, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-10 15:04:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (500, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-10 16:29:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (501, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-10 17:54:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (502, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-10 18:21:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (503, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-10 18:21:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (504, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-10 18:21:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (505, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-10 18:22:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (506, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-10 18:22:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (507, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-10 18:22:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (508, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-10 18:26:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (509, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-10 18:26:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (510, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-10 19:14:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (511, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 09:41:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (512, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 09:42:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (513, 1, '王五', '127.0.0.1', '0', '退出成功', '2025-11-11 09:43:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (514, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 09:43:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (515, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 09:43:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (516, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-11 09:43:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (517, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-11 09:44:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (518, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 09:44:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (519, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 09:44:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (520, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-11 09:45:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (521, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-11 09:54:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (522, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 09:54:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (523, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 09:54:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (524, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 09:54:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (525, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 10:21:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (526, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 10:26:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (527, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-11 10:26:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (528, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-11 10:29:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (529, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-11 10:29:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (530, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-11 10:29:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (531, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 10:30:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (532, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 10:36:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (533, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-11 10:36:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (534, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-11 10:41:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (535, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 11:04:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (536, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-11 11:07:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (537, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 11:07:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (538, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 11:07:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (539, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-11 11:07:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (540, 2, '13388880002', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-11 11:07:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (541, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-11 11:08:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (542, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 11:08:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (543, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 11:09:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (544, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-11 11:10:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (545, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-11 11:10:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (546, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-11 11:10:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (547, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 11:11:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (548, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 11:29:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (549, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 11:30:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (550, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 11:32:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (551, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 11:32:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (552, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 12:08:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (553, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 12:08:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (554, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 13:02:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (555, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 14:32:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (556, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 14:32:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (557, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 15:08:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (558, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 15:08:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (559, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 15:43:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (560, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 15:43:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (561, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 15:43:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (562, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 15:44:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (563, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-11 16:54:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (564, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-11 17:08:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (565, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 17:08:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (566, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 17:27:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (567, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-11 17:30:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (568, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 17:32:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (569, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 17:32:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (570, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-11 17:34:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (571, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-11 17:41:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (572, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-11 17:45:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (573, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 17:46:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (574, 2, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-11 17:57:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (575, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-11 17:57:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (576, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-11 18:18:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (577, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-11 18:19:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (578, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 18:33:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (579, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 18:34:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (580, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 18:36:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (581, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 18:36:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (582, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-11 18:46:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (583, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 18:46:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (584, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 18:53:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (585, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 19:44:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (586, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-11 20:46:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (587, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-12 09:41:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (588, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-12 09:43:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (589, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-12 09:43:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (590, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-12 10:49:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (591, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-12 10:49:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (592, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-12 14:55:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (593, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-12 14:55:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (594, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-12 14:55:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (595, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-12 17:55:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (596, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 09:17:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (597, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 09:17:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (598, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 09:18:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (599, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 09:18:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (600, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 09:18:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (601, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-13 09:18:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (602, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-13 09:18:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (603, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 09:18:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (604, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 09:19:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (605, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-13 09:19:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (606, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-13 09:22:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (607, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 09:22:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (608, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 09:23:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (609, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 09:23:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (610, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 09:23:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (611, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-13 09:23:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (612, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 10:24:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (613, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 10:24:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (614, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 10:24:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (615, 2, '王五', '127.0.0.1', '0', '退出成功', '2025-11-13 15:19:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (616, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 15:19:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (617, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 15:19:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (618, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 15:19:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (619, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 15:20:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (620, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 15:20:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (621, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 15:55:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (622, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 15:55:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (623, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 15:55:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (624, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 15:55:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (625, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 15:55:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (626, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 15:56:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (627, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 15:56:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (628, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 15:56:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (629, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 16:02:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (630, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 16:21:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (631, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 16:21:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (632, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 16:21:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (633, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 16:36:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (634, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 16:36:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (635, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 17:01:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (636, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 17:01:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (637, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-13 17:36:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (638, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 17:36:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (639, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-13 17:43:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (640, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-14 09:17:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (641, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 09:17:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (642, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-14 09:30:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (643, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 09:30:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (644, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-14 10:16:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (645, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 10:16:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (646, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-14 10:28:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (647, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 10:28:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (648, 13, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-14 10:28:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (649, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 10:28:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (650, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-14 11:02:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (651, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 11:02:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (652, 13, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-14 11:05:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (653, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 11:05:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (654, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-14 14:30:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (655, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-14 14:31:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (656, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 14:31:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (657, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-14 15:19:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (658, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 15:19:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (659, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-14 16:35:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (660, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 16:35:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (661, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-14 21:57:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (662, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-15 10:11:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (663, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-15 10:30:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (664, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-15 11:14:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (665, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-15 11:41:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (666, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-15 11:41:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (667, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-15 11:59:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (668, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-15 11:59:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (669, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-15 11:59:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (670, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-15 14:54:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (671, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-15 20:35:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (672, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-15 20:46:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (673, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2025-11-15 20:46:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (674, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-15 20:46:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (675, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-11-15 20:47:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (676, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-15 20:48:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (677, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-11-15 20:49:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (678, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-15 20:50:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (679, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-15 20:51:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (680, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-11-15 20:52:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (681, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-15 20:52:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (682, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-15 20:53:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (683, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-11-15 20:53:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (684, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-11-15 20:54:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (685, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-11-15 20:54:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (686, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-11-15 20:58:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (687, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-15 20:59:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (688, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-16 15:55:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (689, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-16 20:32:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (690, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 09:20:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (691, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 09:29:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (692, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 09:30:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (693, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 09:55:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (694, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 09:55:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (695, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 10:14:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (696, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-17 10:26:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (697, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 10:27:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (698, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-17 10:27:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (699, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2025-11-17 10:28:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (700, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-17 10:29:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (701, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2025-11-17 10:29:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (702, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-17 10:29:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (703, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 10:29:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (704, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 10:29:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (705, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 10:30:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (706, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-17 10:34:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (707, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 10:34:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (708, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 10:57:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (709, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 10:57:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (710, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-17 11:30:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (711, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 11:30:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (712, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-17 11:30:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (713, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 11:31:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (714, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-17 11:31:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (715, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2025-11-17 11:31:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (716, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-17 11:32:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (717, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2025-11-17 11:32:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (718, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-17 11:36:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (719, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 11:36:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (720, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 11:37:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (721, 10, '13122222222', '127.0.0.1', '0', '登录成功', '2025-11-17 11:37:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (722, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-11-17 11:39:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (723, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-11-17 11:39:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (724, 1, '18111111111', '127.0.0.1', '0', '老师登录成功', '2025-11-17 11:43:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (725, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-11-17 11:43:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (726, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 11:44:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (727, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 14:06:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (728, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-17 14:24:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (729, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 14:24:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (730, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-17 14:26:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (731, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 14:26:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (732, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 14:27:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (733, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 14:27:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (734, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-17 16:06:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (735, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-17 16:08:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (736, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 16:09:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (737, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-17 16:09:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (738, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 16:09:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (739, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-17 16:09:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (740, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 16:11:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (741, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-17 16:11:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (742, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 16:18:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (743, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-17 16:18:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (744, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 16:50:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (745, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 16:51:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (746, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 16:54:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (747, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-17 16:54:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (748, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 16:54:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (749, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2025-11-17 16:54:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (750, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-17 16:55:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (751, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2025-11-17 16:55:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (752, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 16:57:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (753, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 16:57:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (754, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 17:05:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (755, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2025-11-17 17:05:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (756, 1, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-17 17:09:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (757, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2025-11-17 17:09:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (758, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-17 17:13:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (759, 1, '18111111111', '127.0.0.1', '0', '老师登录成功', '2025-11-17 17:13:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (760, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-17 17:25:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (761, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 17:25:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (762, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 17:30:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (763, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 17:30:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (764, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-11-17 17:31:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (765, 1, '18111111111', '127.0.0.1', '0', '老师登录成功', '2025-11-17 17:31:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (766, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 17:32:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (767, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 17:32:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (768, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-11-17 17:43:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (769, 1, '18111111111', '127.0.0.1', '0', '老师登录成功', '2025-11-17 17:43:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (770, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-17 17:46:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (771, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 17:46:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (772, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-11-17 18:33:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (773, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-17 18:34:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (774, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-17 18:34:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (775, 1, '18111111111', '127.0.0.1', '0', '老师登录成功', '2025-11-17 18:34:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (776, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-11-17 18:38:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (777, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-17 18:38:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (778, 2, '13466666666', '127.0.0.1', '0', '老师登录成功', '2025-11-17 18:46:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (779, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-17 21:02:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (780, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 09:12:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (781, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-18 09:12:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (782, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 09:14:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (783, 1, '13466666666', '127.0.0.1', '0', '退出成功', '2025-11-18 09:27:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (784, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-18 09:40:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (785, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 09:40:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (786, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-18 09:40:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (787, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 09:40:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (788, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-18 09:40:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (789, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-18 09:46:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (790, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 09:46:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (791, 2, '13388880002', '127.0.0.1', '0', '老师登录成功', '2025-11-18 09:47:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (792, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-18 09:47:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (793, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 09:47:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (794, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-18 09:47:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (795, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 09:47:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (796, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-18 09:48:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (797, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 09:48:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (798, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-18 09:48:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (799, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 09:48:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (800, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-18 09:50:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (801, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 09:50:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (802, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-18 09:51:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (803, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 10:28:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (804, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-18 10:28:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (805, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 10:39:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (806, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-18 10:39:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (807, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 11:02:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (808, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-18 11:04:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (809, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-18 11:05:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (810, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-18 11:05:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (811, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 11:07:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (812, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-18 11:07:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (813, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-18 11:15:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (814, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-18 11:15:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (815, 2, '13388880002', '127.0.0.1', '0', '退出成功', '2025-11-18 11:29:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (816, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-11-18 11:30:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (817, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-11-18 11:46:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (818, 2, '13466666666', '127.0.0.1', '0', '老师登录成功', '2025-11-18 11:46:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (819, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-18 14:19:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (820, 2, '13466666666', '127.0.0.1', '0', '退出成功', '2025-11-18 15:35:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (821, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-18 15:36:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (822, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-18 17:35:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (823, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-18 17:35:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (824, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-19 09:28:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (825, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-19 09:28:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (826, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-19 09:29:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (827, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-19 09:29:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (828, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-19 09:34:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (829, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-19 09:51:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (830, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-19 09:55:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (831, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-19 09:57:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (832, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-19 09:57:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (833, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-19 11:56:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (834, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-19 15:23:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (835, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-19 15:23:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (836, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-19 17:26:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (837, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-11-19 17:28:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (838, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-19 17:30:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (839, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-19 17:30:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (840, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-19 17:30:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (841, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-19 17:30:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (842, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-19 17:30:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (843, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-19 17:32:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (844, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-19 17:32:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (845, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-19 17:42:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (846, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-19 17:46:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (847, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-19 17:47:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (848, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-19 17:48:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (849, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-19 17:52:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (850, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-19 17:53:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (851, 1, '18723122132', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-11-19 17:58:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (852, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-19 22:14:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (853, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-19 22:18:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (854, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-19 22:19:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (855, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-19 23:05:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (856, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-20 09:28:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (857, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-20 09:28:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (858, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 09:35:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (859, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 09:35:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (860, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-11-20 09:35:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (861, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-11-20 09:35:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (862, 2, '13466666666', '127.0.0.1', '0', '老师登录成功', '2025-11-20 09:37:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (863, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-20 09:49:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (864, 1, '13466666666', '127.0.0.1', '0', '退出成功', '2025-11-20 09:52:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (865, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-11-20 09:52:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (866, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-11-20 09:52:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (867, 2, '13466666666', '127.0.0.1', '0', '老师登录成功', '2025-11-20 09:52:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (868, 2, '13466666666', '127.0.0.1', '0', '退出成功', '2025-11-20 09:55:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (869, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-11-20 09:55:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (870, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-11-20 10:05:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (871, 2, '13466666666', '127.0.0.1', '0', '登录成功', '2025-11-20 10:05:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (872, 2, '13466666666', '127.0.0.1', '0', '退出成功', '2025-11-20 10:29:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (873, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-20 10:29:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (874, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-20 10:48:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (875, 2, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 10:51:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (876, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-20 10:51:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (877, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 11:06:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (878, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-20 11:06:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (879, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 11:09:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (880, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-20 11:10:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (881, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 11:46:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (882, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-20 11:47:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (883, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-20 11:47:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (884, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-20 11:48:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (885, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-20 12:01:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (886, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-20 12:16:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (887, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 12:22:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (888, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 13:00:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (889, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-11-20 13:12:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (890, 17, '13455665566', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-11-20 13:12:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (891, 17, '刘备', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 14:24:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (892, 17, '13312666666', '127.0.0.1', '0', '学生登录成功', '2025-11-20 14:24:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (893, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-20 15:14:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (894, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-20 15:14:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (895, 17, '张菲', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 15:31:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (896, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-20 15:31:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (897, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-20 15:36:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (898, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-20 15:36:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (899, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-20 15:37:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (900, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-20 15:39:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (901, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 15:40:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (902, 17, '13312666666', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-11-20 15:42:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (903, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-20 16:07:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (904, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-20 16:07:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (905, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-11-20 17:00:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (906, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-20 17:00:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (907, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-20 17:02:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (908, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-20 17:02:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (909, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 17:31:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (910, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-20 17:32:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (911, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-20 17:41:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (912, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-20 17:44:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (913, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 17:51:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (914, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-20 17:51:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (915, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 17:56:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (916, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-20 17:57:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (917, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 17:57:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (918, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-20 18:01:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (919, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 18:01:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (920, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-20 18:02:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (921, 2, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 18:03:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (922, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-20 18:04:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (923, 2, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 18:07:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (924, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-20 18:08:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (925, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-20 18:09:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (926, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 18:14:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (927, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-20 18:14:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (928, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 18:18:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (929, 17, '张菲', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-20 18:22:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (930, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-20 18:22:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (931, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-20 18:23:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (932, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-20 18:23:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (933, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-20 18:24:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (934, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 18:27:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (935, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-20 18:27:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (936, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-20 18:29:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (937, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-20 18:32:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (938, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-20 18:32:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (939, 1, '13455543334', '127.0.0.1', '0', '退出成功', '2025-11-20 18:34:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (940, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-20 18:35:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (941, 1, '13455543334', '127.0.0.1', '0', '退出成功', '2025-11-21 09:27:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (942, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-21 09:28:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (943, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 09:31:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (944, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 09:31:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (945, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 09:31:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (946, 1, '13455543334', '127.0.0.1', '0', '退出成功', '2025-11-21 09:37:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (947, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-21 09:38:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (948, 1, '13455543334', '127.0.0.1', '0', '退出成功', '2025-11-21 09:42:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (949, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-21 09:42:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (950, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-11-21 09:43:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (951, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 09:44:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (952, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 09:44:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (953, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-21 09:44:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (954, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-11-21 11:43:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (955, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 11:43:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (956, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 14:07:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (957, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-21 14:07:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (958, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-11-21 14:08:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (959, 17, '13455543334', '127.0.0.1', '0', '老师登录成功', '2025-11-21 14:08:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (960, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-11-21 14:08:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (961, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-21 14:08:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (962, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-11-21 14:16:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (963, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-21 14:16:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (964, 1, '刘备', '127.0.0.1', '0', '退出成功', '2025-11-21 14:31:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (965, 2, '13466666666', '127.0.0.1', '0', '登录成功', '2025-11-21 14:31:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (966, 2, '13466666666', '127.0.0.1', '0', '退出成功', '2025-11-21 14:32:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (967, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2025-11-21 14:33:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (968, 17, '13455543334', '127.0.0.1', '0', '老师登录成功', '2025-11-21 14:33:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (969, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 14:34:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (970, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-11-21 14:34:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (971, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 14:38:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (972, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 14:38:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (973, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-11-21 14:44:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (974, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 14:44:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (975, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 16:08:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (976, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-21 16:08:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (977, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 16:17:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (978, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 16:18:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (979, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 16:18:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (980, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 16:19:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (981, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-11-21 16:19:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (982, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 16:21:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (983, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 16:21:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (984, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-21 16:21:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (985, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 16:22:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (986, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 16:22:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (987, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 16:30:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (988, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-21 16:30:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (989, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 16:31:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (990, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-21 16:31:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (991, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-21 16:41:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (992, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-21 16:41:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (993, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 16:41:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (994, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 16:41:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (995, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-21 16:43:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (996, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-21 16:43:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (997, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 16:44:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (998, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-21 16:44:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (999, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 16:44:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1000, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 16:45:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1001, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 16:45:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1002, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 16:46:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1003, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 16:46:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1004, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 16:47:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1005, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 16:47:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1006, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-21 16:48:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1007, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-21 16:48:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1008, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 16:48:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1009, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 16:48:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1010, 17, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 16:49:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1011, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-21 16:49:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1012, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 16:49:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1013, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-21 16:49:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1014, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 16:49:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1015, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-21 16:49:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1016, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 16:50:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1017, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 16:50:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1018, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-21 16:50:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1019, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 17:00:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1020, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 17:01:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1021, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 17:01:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1022, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 17:01:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1023, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 17:02:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1024, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-21 17:02:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1025, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 17:02:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1026, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 17:03:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1027, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-21 17:04:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1028, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 17:04:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1029, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 17:07:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1030, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 17:07:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1031, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 17:09:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1032, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 17:09:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1033, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 17:09:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1034, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-21 17:10:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1035, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-21 17:10:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1036, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-21 17:10:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1037, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 17:10:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1038, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 17:11:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1039, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-11-21 17:11:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1040, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-21 17:11:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1041, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2025-11-21 17:11:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1042, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-21 17:11:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1043, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-11-21 17:12:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1044, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 17:32:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1045, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-21 17:32:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1046, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 17:33:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1047, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-21 17:33:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1048, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-21 17:33:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1049, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 17:34:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1050, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-21 17:37:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1051, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 17:37:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1052, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-21 17:38:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1053, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-21 17:38:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1054, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-21 17:53:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1055, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-21 17:53:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1056, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-21 17:53:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1057, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-21 17:54:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1058, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-22 11:34:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1059, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-22 15:20:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1060, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-22 15:20:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1061, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-22 15:31:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1062, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-22 15:31:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1063, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-22 15:31:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1064, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-22 15:32:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1065, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-22 21:40:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1066, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-23 19:47:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1067, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-23 19:47:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1068, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-23 19:47:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1069, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-23 19:51:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1070, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 09:32:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1071, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-24 09:33:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1072, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-24 09:34:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1073, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-24 09:40:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1074, 2, '13466666666', '127.0.0.1', '0', '老师登录成功', '2025-11-24 09:42:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1075, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-24 09:48:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1076, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-24 09:48:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1077, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-24 09:48:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1078, 2, '13466666666', '127.0.0.1', '0', '登录成功', '2025-11-24 09:50:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1079, 2, '13466666666', '127.0.0.1', '0', '退出成功', '2025-11-24 09:50:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1080, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-24 09:50:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1081, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 09:50:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1082, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-24 09:52:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1083, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 09:52:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1084, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-24 09:52:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1085, 2, '13466666666', '127.0.0.1', '0', '退出成功', '2025-11-24 09:54:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1086, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 09:54:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1087, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-24 09:58:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1088, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-24 10:32:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1089, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-11-24 10:32:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1090, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-24 10:33:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1091, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-24 10:33:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1092, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-24 10:33:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1093, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-24 10:43:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1094, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-24 10:43:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1095, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 10:44:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1096, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-24 11:04:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1097, 17, '13312666666', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-11-24 11:05:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1098, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-24 11:14:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1099, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 11:14:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1100, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-24 11:15:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1101, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-24 11:16:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1102, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-11-24 11:16:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1103, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-24 11:16:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1104, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-24 11:19:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1105, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-24 11:20:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1106, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-24 11:22:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1107, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 11:22:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1108, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-24 11:28:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1109, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 11:28:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1110, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-24 11:28:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1111, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-24 11:28:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1112, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-24 11:35:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1113, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-11-24 11:35:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1114, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-24 14:24:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1115, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 14:24:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1116, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-24 14:36:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1117, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 14:36:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1118, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-24 14:37:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1119, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-24 14:37:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1120, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-24 15:13:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1121, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 15:13:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1122, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-24 15:48:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1123, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-24 15:48:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1124, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-25 09:03:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1125, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-11-25 09:03:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1126, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-25 09:04:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1127, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-25 09:30:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1128, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-25 09:30:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1129, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-25 10:10:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1130, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-25 10:25:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1131, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-25 10:25:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1132, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-25 10:50:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1133, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-25 10:50:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1134, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-25 10:50:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1135, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-25 10:50:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1136, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-25 10:50:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1137, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-25 10:50:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1138, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-25 10:50:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1139, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-11-25 10:51:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1140, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-25 11:03:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1141, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-25 14:41:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1142, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-25 14:42:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1143, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-25 16:48:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1144, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-11-25 16:48:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1145, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-11-25 16:49:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1146, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-25 16:49:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1147, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-25 18:21:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1148, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-25 18:21:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1149, 17, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-25 18:29:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1150, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-25 18:29:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1151, 1, '张菲', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-25 23:01:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1152, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-25 23:04:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1153, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-26 09:23:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1154, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-26 09:23:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1155, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-26 09:51:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1156, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-26 09:51:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1157, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-11-26 09:51:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1158, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-26 10:23:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1159, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-26 10:24:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1160, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-26 10:32:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1161, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-26 10:37:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1162, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-26 10:41:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1163, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-26 10:57:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1164, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-26 10:57:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1165, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-26 10:57:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1166, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-26 10:58:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1167, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-26 11:21:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1168, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-26 14:30:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1169, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-26 14:30:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1170, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-11-26 14:30:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1171, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-11-26 14:37:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1172, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-26 14:59:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1173, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-26 15:26:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1174, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-26 15:26:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1175, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-26 15:26:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1176, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-26 15:26:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1177, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-26 16:46:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1178, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-26 16:46:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1179, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-26 16:48:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1180, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-26 16:48:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1181, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-26 16:56:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1182, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-26 17:03:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1183, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-26 17:08:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1184, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-26 17:12:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1185, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-26 17:25:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1186, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-26 21:20:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1187, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-26 21:47:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1188, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-26 21:57:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1189, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-26 23:04:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1190, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 00:13:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1191, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 00:13:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1192, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-11-27 09:13:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1193, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 09:13:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1194, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 09:22:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1195, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 09:24:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1196, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 09:31:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1197, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 09:50:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1198, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 09:52:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1199, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-11-27 09:57:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1200, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-27 09:57:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1201, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-27 09:58:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1202, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-27 09:58:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1203, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 10:07:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1204, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 10:07:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1205, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-27 10:08:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1206, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 10:17:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1207, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-27 10:17:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1208, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 10:18:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1209, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-27 10:18:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1210, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-27 10:19:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1211, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 10:19:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1212, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 10:20:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1213, 17, '13566776677', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 10:20:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1214, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 10:23:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1215, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2025-11-27 10:34:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1216, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 11:04:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1217, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 11:05:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1218, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-27 11:05:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1219, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 11:06:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1220, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 11:06:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1221, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-27 11:06:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1222, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 11:06:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1223, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-27 11:06:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1224, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 11:09:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1225, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 11:09:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1226, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 11:30:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1227, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 11:30:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1228, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 11:31:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1229, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-27 11:39:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1230, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 11:40:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1231, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 11:41:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1232, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-27 11:42:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1233, 17, '13566776677', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 11:45:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1234, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-27 11:45:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1235, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 11:45:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1236, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 11:45:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1237, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-27 11:56:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1238, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 11:56:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1239, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-27 11:56:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1240, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 11:56:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1241, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-27 11:56:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1242, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-27 11:57:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1243, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-27 11:57:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1244, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 11:57:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1245, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 11:57:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1246, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-27 11:57:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1247, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 11:57:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1248, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 11:57:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1249, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 11:57:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1250, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 11:58:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1251, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-27 11:58:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1252, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 12:03:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1253, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 12:03:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1254, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 12:03:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1255, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 12:03:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1256, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 12:04:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1257, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 12:10:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1258, 12, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 12:11:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1259, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 12:12:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1260, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 12:16:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1261, 12, '15202903073', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 12:16:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1262, 12, '15202903073', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 12:21:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1263, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 12:21:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1264, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 12:45:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1265, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 12:45:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1266, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 13:00:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1267, 1, '15202903074', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 13:01:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1268, 1, '15202903074', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 13:02:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1269, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 13:02:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1270, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-27 14:02:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1271, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-27 14:02:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1272, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-27 14:03:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1273, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-27 14:04:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1274, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-27 14:04:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1275, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-27 14:08:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1276, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-27 14:08:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1277, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-27 14:19:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1278, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 14:19:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1279, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-11-27 14:23:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1280, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 14:23:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1281, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 14:23:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1282, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 14:23:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1283, 17, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 15:13:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1284, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-27 15:14:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1285, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 15:14:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1286, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-27 15:14:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1287, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 16:04:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1288, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 16:05:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1289, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 16:15:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1290, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-11-27 16:40:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1291, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-11-27 16:40:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1292, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 17:08:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1293, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-27 17:08:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1294, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-11-27 17:10:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1295, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 17:10:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1296, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-27 17:34:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1297, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-27 17:35:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1298, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 18:02:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1299, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-11-27 18:03:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1300, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 18:19:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1301, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-27 21:44:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1302, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-27 21:44:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1303, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 21:44:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1304, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-27 22:04:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1305, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 09:47:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1306, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 09:48:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1307, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-28 10:02:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1308, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-11-28 10:03:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1309, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-28 10:07:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1310, 21, '15202903075', '127.0.0.1', '0', '退出成功', '2025-11-28 10:07:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1311, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-28 10:07:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1312, 17, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-28 10:45:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1313, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-28 10:48:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1314, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 10:48:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1315, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 10:49:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1316, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 11:17:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1317, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 11:17:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1318, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-28 11:17:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1319, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 11:17:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1320, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-28 11:17:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1321, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-11-28 11:24:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1322, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-11-28 11:33:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1323, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 11:33:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1324, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 11:33:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1325, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-28 11:33:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1326, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 11:41:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1327, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-28 11:50:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1328, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-28 11:58:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1329, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-11-28 11:59:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1330, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-28 12:31:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1331, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:09:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1332, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 15:10:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1333, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:19:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1334, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 15:19:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1335, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:26:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1336, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 15:26:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1337, 21, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:26:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1338, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 15:26:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1339, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:30:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1340, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 15:30:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1341, 21, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:32:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1342, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 15:32:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1343, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:40:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1344, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 15:40:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1345, 13, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:40:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1346, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 15:40:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1347, 12, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:40:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1348, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 15:44:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1349, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-11-28 15:46:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1350, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:59:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1351, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 15:59:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1352, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 15:59:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1353, 12, '15202903073', '127.0.0.1', '0', '登录成功', '2025-11-28 17:13:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1354, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-11-28 17:23:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1355, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-11-28 17:24:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1356, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 17:25:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1357, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 17:26:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1358, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 17:26:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1359, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-11-28 17:27:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1360, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-11-28 17:28:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1361, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-11-28 17:32:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1362, 21, '15202903075', '127.0.0.1', '0', '退出成功', '2025-11-28 17:33:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1363, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-11-28 17:33:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1364, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 17:33:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1365, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-28 17:38:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1366, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-11-28 17:38:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1367, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-28 21:49:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1368, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-11-29 20:49:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1369, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-11-29 20:49:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1370, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-11-29 20:56:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1371, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-12-01 09:13:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1372, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-01 09:32:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1373, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-01 09:33:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1374, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 09:33:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1375, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 09:41:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1376, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-01 09:41:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1377, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-01 09:41:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1378, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 09:43:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1379, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-01 09:44:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1380, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 09:44:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1381, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-01 09:45:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1382, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 09:45:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1383, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-01 09:47:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1384, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-01 09:47:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1385, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-01 09:48:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1386, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-01 09:52:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1387, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-01 10:00:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1388, 21, '15202903075', '127.0.0.1', '0', '退出成功', '2025-12-01 10:01:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1389, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-01 10:03:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1390, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 10:04:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1391, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-01 10:30:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1392, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-01 10:30:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1393, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-01 10:32:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1394, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-01 10:32:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1395, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-01 10:32:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1396, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-12-01 10:32:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1397, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-01 10:33:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1398, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-01 10:33:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1399, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 10:42:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1400, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-01 10:57:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1401, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-01 10:57:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1402, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 11:00:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1403, 21, '15202903075', '127.0.0.1', '0', '老师登录成功', '2025-12-01 11:00:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1404, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-01 11:03:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1405, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-01 11:04:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1406, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 11:17:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1407, 17, '13312666666', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-01 11:18:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1408, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-01 11:23:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1409, 17, '13312666666', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-01 11:23:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1410, 17, '张菲', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 11:27:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1411, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-01 11:27:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1412, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 11:31:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1413, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-01 11:32:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1414, 21, '15202903076', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-01 11:37:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1415, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 11:40:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1416, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 12:00:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1417, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-01 12:00:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1418, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 15:40:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1419, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-01 15:41:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1420, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-01 16:46:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1421, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 16:51:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1422, 17, '13566776677', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 16:51:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1423, 17, '13566776677', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 16:56:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1424, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-01 16:56:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1425, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-01 16:56:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1426, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 16:56:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1427, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 17:05:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1428, 17, '13455543334', '127.0.0.1', '0', '老师登录成功', '2025-12-01 17:05:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1429, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 17:08:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1430, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-01 17:08:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1431, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-01 17:11:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1432, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-01 17:35:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1433, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-01 17:35:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1434, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-01 18:03:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1435, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-01 18:24:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1436, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 18:25:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1437, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 18:26:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1438, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 18:26:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1439, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-01 22:14:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1440, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-01 22:14:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1441, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 09:20:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1442, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 09:20:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1443, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 09:27:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1444, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 09:28:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1445, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 09:29:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1446, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 09:31:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1447, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 09:31:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1448, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-02 09:41:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1449, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 10:13:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1450, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 10:13:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1451, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 10:23:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1452, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 10:23:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1453, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 10:26:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1454, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 10:26:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1455, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 10:28:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1456, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 10:28:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1457, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 15:45:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1458, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-02 15:47:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1459, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-02 16:44:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1460, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 16:44:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1461, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-02 16:46:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1462, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 17:03:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1463, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-12-02 17:03:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1464, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-02 17:03:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1465, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 17:03:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1466, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 17:04:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1467, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 17:04:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1468, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 17:05:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1469, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-12-02 17:05:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1470, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-02 17:05:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1471, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-02 17:06:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1472, 21, '15202903075', '127.0.0.1', '0', '退出成功', '2025-12-02 17:08:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1473, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-02 17:10:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1474, 21, '15202903075', '127.0.0.1', '0', '退出成功', '2025-12-02 17:10:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1475, 21, '15202903077', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-02 17:10:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1476, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-02 17:11:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1477, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-12-02 17:11:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1478, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-02 17:14:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1479, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 17:14:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1480, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 17:14:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1481, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-02 17:15:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1482, 21, '15202903077', '127.0.0.1', '0', '退出成功', '2025-12-02 17:18:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1483, 21, '15202903077', '127.0.0.1', '0', '老师登录成功', '2025-12-02 17:18:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1484, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-02 17:20:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1485, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 17:21:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1486, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 17:22:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1487, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-02 17:22:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1488, 21, '15202903077', '127.0.0.1', '0', '退出成功', '2025-12-02 17:23:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1489, 21, '15202903075', '127.0.0.1', '0', '老师登录成功', '2025-12-02 17:23:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1490, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-02 17:23:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1491, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-12-02 17:24:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1492, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-02 17:52:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1493, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-02 17:52:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1494, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-02 17:52:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1495, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-02 17:53:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1496, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-02 17:53:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1497, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-12-02 17:53:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1498, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-02 17:54:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1499, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-12-02 17:54:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1500, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-02 17:54:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1501, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-02 17:54:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1502, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-03 09:10:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1503, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-03 09:10:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1504, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-03 09:47:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1505, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-03 09:47:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1506, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-03 09:47:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1507, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-03 11:12:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1508, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-03 11:37:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1509, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-03 11:37:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1510, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-03 11:40:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1511, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-03 11:40:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1512, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-03 11:54:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1513, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-03 14:17:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1514, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-03 14:18:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1515, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-03 17:41:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1516, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-12-03 17:41:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1517, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-03 18:10:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1518, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-03 18:22:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1519, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-04 09:13:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1520, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-04 09:13:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1521, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-04 09:17:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1522, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-12-04 09:17:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1523, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-04 09:18:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1524, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-04 09:18:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1525, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 09:27:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1526, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-04 09:27:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1527, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 09:38:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1528, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-04 09:38:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1529, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-04 09:57:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1530, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 09:57:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1531, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-04 09:57:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1532, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-04 09:57:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1533, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-04 09:57:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1534, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-04 10:11:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1535, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-04 10:17:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1536, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-04 10:33:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1537, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-04 11:26:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1538, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-04 11:27:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1539, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-04 11:29:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1540, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-04 11:30:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1541, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-04 11:30:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1542, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-04 11:30:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1543, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-04 11:32:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1544, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-04 11:32:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1545, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-04 11:40:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1546, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-04 11:41:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1547, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-12-04 11:41:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1548, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-04 11:41:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1549, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-04 11:41:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1550, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-04 11:42:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1551, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-04 11:42:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1552, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 11:43:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1553, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-12-04 11:44:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1554, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-12-04 11:57:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1555, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-12-04 11:57:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1556, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-12-04 12:02:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1557, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-12-04 12:02:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1558, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-04 12:07:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1559, 17, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-04 12:07:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1560, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-04 12:08:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1561, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-04 12:09:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1562, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-04 12:12:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1563, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 12:12:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1564, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-04 12:13:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1565, 17, '13455665566', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-04 14:08:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1566, 17, '13312666666', '127.0.0.1', '0', '学生登录成功', '2025-12-04 14:11:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1567, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-04 14:38:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1568, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2025-12-04 14:39:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1569, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-04 14:47:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1570, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-04 14:47:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1571, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 14:56:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1572, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-04 14:57:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1573, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 14:57:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1574, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-04 14:57:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1575, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 15:02:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1576, 1, '18189138536', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-04 15:02:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1577, 17, '张菲', '127.0.0.1', '0', '退出成功', '2025-12-04 15:12:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1578, 17, '13455665566', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-04 15:12:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1579, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 16:30:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1580, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-04 16:30:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1581, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 16:30:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1582, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-04 16:30:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1583, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-04 16:43:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1584, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-12-04 16:49:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1585, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-04 16:50:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1586, 21, '15202903075', '127.0.0.1', '0', '退出成功', '2025-12-04 16:59:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1587, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-04 16:59:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1589, 1, '13335409925', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-04 17:37:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1590, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-04 17:38:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1591, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-04 17:55:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1592, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 17:55:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1593, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-04 17:56:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1594, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-04 18:02:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1595, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-04 18:04:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1596, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-04 18:04:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1597, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-04 18:05:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1598, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-04 18:05:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1599, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-05 09:38:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1600, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 09:39:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1601, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 09:42:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1602, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 10:08:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1603, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-05 10:08:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1604, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 10:32:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1605, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 10:32:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1606, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 10:34:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1607, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 10:41:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1608, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 10:43:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1609, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-05 10:50:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1610, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 10:53:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1611, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-05 10:54:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1612, 17, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-05 14:24:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1613, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-05 14:24:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1614, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 14:25:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1615, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 14:25:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1616, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 14:55:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1617, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-05 14:55:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1618, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 15:09:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1619, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-05 15:09:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1620, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-05 15:10:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1621, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 15:10:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1622, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 15:11:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1623, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-05 15:11:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1624, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-05 15:12:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1625, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 15:12:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1626, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 15:12:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1627, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-05 15:12:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1628, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-05 15:13:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1629, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 15:13:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1630, 17, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-05 15:14:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1631, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 15:17:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1632, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 15:21:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1633, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-05 15:22:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1634, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-05 15:35:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1635, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 15:38:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1636, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-05 15:39:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1637, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 15:39:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1638, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-05 15:48:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1639, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-05 15:48:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1640, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 16:00:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1641, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 16:00:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1642, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2025-12-05 16:04:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1643, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2025-12-05 16:25:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1644, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-05 16:29:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1645, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-05 16:29:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1646, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-05 16:29:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1647, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 16:29:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1648, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 16:35:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1649, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 16:35:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1650, 17, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-05 16:36:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1651, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 16:37:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1652, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 16:38:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1653, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 16:38:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1654, 1, '18723122132', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-05 16:38:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1655, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-05 16:39:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1656, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-05 16:39:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1657, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 16:40:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1658, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-05 16:40:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1659, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-05 16:41:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1660, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-05 16:41:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1661, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 16:41:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1662, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-05 16:41:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1663, 1, '龙小孟', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-05 16:42:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1664, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-05 16:42:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1665, 1, '龙小孟', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-05 16:42:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1666, 1, '18189138536', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-05 16:43:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1667, 17, '13455665566', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-05 16:44:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1668, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 16:45:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1669, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 16:45:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1670, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 16:47:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1671, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 16:47:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1672, 12, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 16:47:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1673, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 16:47:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1674, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-05 16:53:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1675, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-05 16:59:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1676, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:00:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1677, 21, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 17:02:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1678, 21, '13811111111', '127.0.0.1', '0', '登录成功', '2025-12-05 17:03:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1679, 21, '13811111111', '127.0.0.1', '0', '退出成功', '2025-12-05 17:03:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1680, 21, '13811111111', '127.0.0.1', '0', '老师登录成功', '2025-12-05 17:03:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1681, 21, '13811111111', '127.0.0.1', '0', '退出成功', '2025-12-05 17:03:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1682, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 17:04:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1683, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 17:05:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1684, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:05:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1685, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-05 17:05:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1686, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:11:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1687, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-05 17:13:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1688, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:14:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1689, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:18:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1690, 1, '龙小孟', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-05 17:20:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1691, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 17:20:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1692, 1, '15388888888', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:26:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1693, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-05 17:27:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1694, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-05 17:29:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1695, 17, '13778787878', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:29:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1696, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-05 17:29:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1697, 17, '曹操', '127.0.0.1', '0', '退出成功', '2025-12-05 17:30:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1698, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 17:30:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1699, 17, '13778787878', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:30:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1700, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 17:35:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1701, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 17:37:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1702, 1, 'test111', '127.0.0.1', '0', '退出成功', '2025-12-05 17:38:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1703, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 17:38:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1704, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 17:39:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1705, 2, '15277777777', '127.0.0.1', '0', '登录成功', '2025-12-05 17:39:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1706, 2, '15277777777', '127.0.0.1', '0', '退出成功', '2025-12-05 17:39:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1707, 2, '15277777777', '127.0.0.1', '0', '老师登录成功', '2025-12-05 17:40:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1708, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:43:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1709, 17, '曹操', '127.0.0.1', '0', '退出成功', '2025-12-05 17:48:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1710, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-05 17:48:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1711, 2, '15277777777', '127.0.0.1', '0', '退出成功', '2025-12-05 17:51:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1712, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 17:51:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1713, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-05 17:52:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1714, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-05 17:53:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1715, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:53:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1716, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:53:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1717, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-05 17:57:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1718, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-05 17:57:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1719, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-05 17:59:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1720, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-05 17:59:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1721, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-05 18:00:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1722, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 18:00:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1723, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-05 18:05:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1724, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-05 18:13:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1725, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-05 18:13:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1726, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-05 18:16:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1727, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-05 18:16:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1728, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-05 18:19:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1729, 17, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-05 18:38:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1730, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-06 11:56:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1731, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-06 11:58:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1732, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-06 11:58:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1733, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-06 14:56:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1734, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-06 14:56:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1735, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-06 15:24:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1736, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-06 15:24:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1737, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-08 09:27:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1738, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 09:45:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1739, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-08 09:56:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1740, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 09:56:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1741, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:19:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1742, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:19:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1743, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:20:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1744, 1, '18189138536', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-08 10:20:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1745, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-08 10:29:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1746, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:29:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1747, 1, '18723122132', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-08 10:30:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1748, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2025-12-08 10:30:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1749, 17, '13778787878', '127.0.0.1', '0', '学生登录成功', '2025-12-08 10:33:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1750, 17, '曹操', '127.0.0.1', '0', '退出成功', '2025-12-08 10:33:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1751, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-12-08 10:33:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1752, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-08 10:34:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1753, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:34:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1754, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:34:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1755, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:35:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1756, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:35:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1757, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-12-08 10:35:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1758, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:35:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1759, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2025-12-08 10:35:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1760, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:35:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1761, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:46:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1762, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:46:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1763, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:48:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1764, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:48:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1765, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:49:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1766, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:49:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1767, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:50:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1768, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:51:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1769, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:51:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1770, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:52:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1771, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:52:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1772, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:52:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1773, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:53:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1774, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:54:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1775, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:54:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1776, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:54:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1777, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:54:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1778, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:55:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1779, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:55:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1780, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:56:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1781, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:56:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1782, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:56:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1783, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:57:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1784, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:57:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1785, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:57:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1786, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 10:58:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1787, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 10:58:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1788, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 11:00:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1789, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 11:00:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1790, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 11:01:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1791, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 11:01:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1792, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 11:02:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1793, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 11:02:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1794, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 11:03:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1795, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 11:03:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1796, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 11:04:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1797, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 11:04:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1798, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 11:05:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1799, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2025-12-08 11:05:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1800, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 11:05:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1801, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:05:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1802, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:05:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1803, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 11:06:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1804, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 11:06:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1805, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:06:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1806, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:07:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1807, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:07:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1808, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-08 11:08:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1809, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:10:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1810, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:12:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1811, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:12:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1812, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:12:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1813, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:12:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1814, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:12:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1815, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:12:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1816, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:12:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1817, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-08 11:13:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1818, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-08 11:14:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1819, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:15:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1820, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-08 11:15:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1821, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 11:15:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1822, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 11:15:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1823, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-08 11:15:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1824, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:15:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1825, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:17:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1826, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:17:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1827, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-08 11:20:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1828, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:20:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1829, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:21:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1830, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:21:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1831, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:21:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1832, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:21:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1833, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:22:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1834, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-08 11:22:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1835, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:22:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1836, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-08 11:23:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1837, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:23:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1838, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-08 11:23:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1839, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:24:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1840, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:24:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1841, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:24:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1842, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-08 11:24:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1843, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:25:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1844, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-08 11:25:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1845, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:26:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1846, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:26:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1847, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:27:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1848, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:27:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1849, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:28:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1850, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:29:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1851, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:29:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1852, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 11:30:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1853, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 11:30:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1854, 1, '姜二琦', '127.0.0.1', '0', '退出成功', '2025-12-08 11:32:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1855, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-08 11:32:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1856, 17, '13455665566', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-08 11:34:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1857, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 11:44:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1858, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 11:47:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1859, 1, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-08 11:48:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1860, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-12-08 11:49:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1861, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2025-12-08 11:56:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1862, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-08 14:03:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1863, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 14:03:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1864, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 14:03:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1865, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 14:03:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1866, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-12-08 14:10:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1867, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 14:10:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1868, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-08 14:21:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1869, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-08 14:22:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1870, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 14:22:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1871, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 14:35:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1872, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-08 14:37:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1873, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-08 15:42:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1874, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 15:43:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1875, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 15:43:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1876, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 16:45:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1877, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 16:48:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1878, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 17:09:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1879, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 17:10:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1880, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 17:10:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1881, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 17:10:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1882, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-08 17:10:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1883, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 17:10:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1884, 17, '刘备', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-08 17:45:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1885, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-08 17:45:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1886, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-08 17:45:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1887, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 17:48:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1888, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-08 17:48:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1889, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 18:03:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1890, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 18:05:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1891, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-08 18:07:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1892, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-08 18:07:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1893, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-08 18:08:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1894, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-08 18:08:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1895, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 09:39:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1896, 1, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-09 09:41:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1897, 17, '13455665566', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-09 09:42:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1898, 17, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-09 09:43:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1899, 17, '13455665566', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-09 09:46:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1900, 17, '刘备', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-09 09:46:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1901, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-09 09:47:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1902, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 10:19:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1903, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-09 10:20:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1904, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 10:21:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1905, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2025-12-09 10:28:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1906, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-09 10:31:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1907, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 10:31:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1908, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 10:31:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1909, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-09 10:31:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1910, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-09 10:32:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1911, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-09 10:32:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1912, 21, '15202903075', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-09 10:32:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1913, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 11:14:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1914, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 11:26:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1915, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-09 11:49:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1916, 1, '18189138536', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-09 11:49:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1917, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-09 12:31:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1918, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 12:31:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1919, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-09 14:40:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1920, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 14:40:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1921, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 14:41:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1922, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 14:42:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1923, 1, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-09 14:43:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1924, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-09 14:45:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1925, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 14:45:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1926, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-09 15:09:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1927, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 15:14:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1928, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 15:33:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1929, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-09 15:33:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1930, 17, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-09 15:51:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1931, 17, '刘备', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-09 15:51:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1932, 17, '13455665566', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-09 15:52:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1933, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-09 15:54:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1934, 17, '13455665566', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-09 15:55:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1935, 17, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-09 15:56:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1936, 17, '13566776677', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-09 15:58:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1937, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-09 16:04:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1938, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 16:04:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1939, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 16:05:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1940, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-09 16:05:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1941, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-09 16:06:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1942, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 16:06:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1943, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-09 16:06:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1944, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 16:26:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1945, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 16:26:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1946, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 16:26:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1947, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 16:34:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1948, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 16:38:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1949, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 16:55:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1950, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 16:55:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1951, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 16:56:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1952, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-09 16:56:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1953, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-09 16:57:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1954, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-09 16:57:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1955, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-09 16:57:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1956, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 16:57:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1957, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 17:05:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1958, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-09 17:05:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1959, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-09 17:18:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1960, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 17:18:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1961, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-09 17:20:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1962, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-09 17:29:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1963, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-09 17:29:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1964, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-09 17:49:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1965, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-09 17:52:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1966, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-10 09:47:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1967, 1, '18111111111', '127.0.0.1', '0', '老师登录成功', '2025-12-10 10:32:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1968, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-10 10:32:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1969, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-10 11:18:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1970, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-10 11:18:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1971, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-10 14:19:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1972, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-10 14:19:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1973, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-10 14:29:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1974, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-10 14:29:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1975, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-10 14:40:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1976, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-10 14:49:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1977, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2025-12-10 14:55:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1978, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-10 14:55:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1979, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-10 15:19:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1980, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-10 15:19:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1981, 17, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-10 15:26:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1982, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-10 15:27:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1983, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-10 17:35:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1984, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-10 17:51:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1985, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-10 17:52:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1986, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-10 17:53:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1987, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-10 18:04:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1988, 17, '13566776677', '127.0.0.1', '0', '登录成功', '2025-12-10 18:04:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1989, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-10 18:09:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1990, 17, '13566776677', '127.0.0.1', '0', '登录成功', '2025-12-11 09:42:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1991, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-11 09:53:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1992, 1, 'yzadmin', '127.0.0.1', '0', '退出成功', '2025-12-11 10:06:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1993, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-11 10:09:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1994, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-11 10:10:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1995, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 10:13:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1996, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-11 10:14:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1997, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 10:38:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1998, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-11 10:38:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (1999, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-11 10:48:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2000, 1, '18111111111', '127.0.0.1', '0', '老师登录成功', '2025-12-11 10:48:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2001, 17, '13566776677', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-11 10:52:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2002, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-11 10:53:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2003, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-11 11:32:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2004, 1, '18111111111', '127.0.0.1', '0', '登录成功', '2025-12-11 11:34:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2005, 1, '18111111111', '127.0.0.1', '0', '退出成功', '2025-12-11 11:34:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2006, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-11 11:34:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2007, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 13:18:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2008, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-11 13:36:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2009, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 13:45:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2010, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-11 13:45:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2011, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-11 13:50:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2012, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 13:51:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2013, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-11 13:51:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2014, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-11 13:51:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2015, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-11 13:51:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2016, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-11 13:51:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2017, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 13:51:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2018, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-11 13:52:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2019, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 13:52:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2020, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-11 13:52:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2021, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 13:52:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2022, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-11 13:52:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2023, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 13:53:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2024, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-11 13:53:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2025, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-11 13:53:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2026, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-11 13:54:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2027, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-11 13:54:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2028, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-11 14:00:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2029, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-11 14:03:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2030, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-11 14:03:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2031, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-11 14:04:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2032, 17, '刘备', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-11 14:06:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2033, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-11 14:14:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2034, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-11 14:29:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2035, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 14:29:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2036, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-11 14:40:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2037, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-11 14:40:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2038, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 14:40:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2039, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-11 15:51:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2040, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-11 16:09:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2041, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-11 16:10:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2042, 1, '13566776677', '127.0.0.1', '0', '退出成功', '2025-12-12 09:35:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2043, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-12 09:35:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2044, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-12 09:40:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2045, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-12 09:40:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2046, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-12 09:40:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2047, 17, '13566776677', '127.0.0.1', '0', '登录成功', '2025-12-12 09:41:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2048, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-12 09:43:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2049, 17, '13455665566', '127.0.0.1', '0', '学生登录成功', '2025-12-12 09:44:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2050, 17, '刘备', '127.0.0.1', '0', '退出成功', '2025-12-12 09:45:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2051, 17, '13689898989', '127.0.0.1', '0', '老师登录成功', '2025-12-12 09:46:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2052, 17, '13689898989', '127.0.0.1', '0', '退出成功', '2025-12-12 09:47:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2053, 17, '13669666666', '127.0.0.1', '0', '学生登录成功', '2025-12-12 09:47:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2054, 17, '关羽', '127.0.0.1', '0', '退出成功', '2025-12-12 09:48:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2055, 17, '13312666666', '127.0.0.1', '0', '学生登录成功', '2025-12-12 09:49:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2056, 17, '张菲', '127.0.0.1', '0', '退出成功', '2025-12-12 10:16:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2057, 17, '13669666666', '127.0.0.1', '0', '学生登录成功', '2025-12-12 10:16:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2058, 17, '关羽', '127.0.0.1', '0', '退出成功', '2025-12-12 10:18:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2059, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-12 10:20:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2060, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-12 10:23:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2061, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-12 10:23:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2062, 17, '13566776677', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-12 10:40:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2063, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-12 11:23:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2064, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-12 11:23:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2065, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-12 11:36:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2066, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-12-12 11:37:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2067, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-12 14:07:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2068, 1, '18723122132', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-15 09:49:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2069, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-15 10:04:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2070, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-15 10:04:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2071, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-15 10:04:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2072, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-15 10:05:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2073, 17, '13566776677', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-15 10:05:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2074, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-15 10:07:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2075, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-15 10:07:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2076, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-15 10:13:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2077, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-15 10:13:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2078, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-15 10:13:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2079, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-15 10:19:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2080, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-15 10:19:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2081, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-15 10:20:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2082, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-15 10:33:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2083, 1, '18723122132', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-15 10:38:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2084, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-15 10:39:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2085, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-15 10:42:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2086, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-12-15 10:42:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2087, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-15 10:43:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2088, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-15 10:44:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2089, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-15 10:44:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2090, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-15 10:44:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2091, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-15 10:45:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2092, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-15 10:45:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2093, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-15 10:45:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2094, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-15 10:45:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2095, 17, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-15 10:46:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2096, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-15 10:47:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2097, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-15 10:47:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2098, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-15 10:47:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2099, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-15 10:48:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2100, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-15 10:48:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2101, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-15 10:49:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2102, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-15 10:49:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2103, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-15 10:49:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2104, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-12-15 10:49:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2105, 17, '13566776677', '127.0.0.1', '0', '登录成功', '2025-12-15 11:41:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2106, 17, '13566776677', '127.0.0.1', '0', '退出成功', '2025-12-15 11:50:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2107, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-15 11:50:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2108, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-15 14:11:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2109, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-15 15:49:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2110, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-15 15:51:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2111, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-15 16:00:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2112, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-15 16:01:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2113, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2025-12-15 16:01:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2114, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2025-12-15 16:04:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2115, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-15 16:05:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2116, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-15 16:05:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2117, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-15 16:05:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2118, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-15 16:06:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2119, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-15 17:16:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2120, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-15 17:19:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2121, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-15 17:25:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2122, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-15 17:31:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2123, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-15 17:42:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2124, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 17:14:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2125, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 17:22:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2126, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-16 17:23:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2127, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-16 17:24:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2128, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 17:26:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2129, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 17:27:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2130, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 17:27:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2131, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-16 17:28:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2132, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-16 17:28:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2133, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 17:31:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2134, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 17:31:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2135, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 17:32:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2136, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 17:32:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2137, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-12-16 17:33:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2138, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-12-16 17:33:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2139, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 17:36:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2140, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 17:36:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2141, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-12-16 17:36:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2142, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 17:36:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2143, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-16 17:40:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2144, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-12-16 17:45:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2145, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 17:45:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2146, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 17:46:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2147, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-12-16 17:46:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2148, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-16 17:51:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2149, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-16 17:51:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2150, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-16 17:52:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2151, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-16 17:52:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2152, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 17:53:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2153, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-16 17:54:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2154, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-16 18:01:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2155, 10, '13122222222', '127.0.0.1', '0', '登录成功', '2025-12-16 18:01:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2156, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-16 18:03:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2157, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-16 18:03:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2158, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-16 18:03:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2159, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 18:03:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2160, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-12-16 18:03:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2161, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 18:04:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2162, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 18:04:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2163, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-16 18:06:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2164, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-16 18:06:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2165, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-16 18:07:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2166, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-12-16 18:07:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2167, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-16 18:10:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2168, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 18:16:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2169, 17, '13444343434', '127.0.0.1', '0', '老师登录成功', '2025-12-16 18:17:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2170, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-16 18:17:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2171, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 18:17:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2172, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-16 18:21:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2173, 2, '13388880002', '127.0.0.1', '0', '登录成功', '2025-12-16 18:21:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2174, 2, '13388880002', '127.0.0.1', '0', '退出成功', '2025-12-16 18:30:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2175, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-16 18:30:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2176, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-16 18:33:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2177, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 18:33:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2178, 17, '13444343434', '127.0.0.1', '0', '老师登录成功', '2025-12-16 18:33:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2179, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 18:33:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2180, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 18:34:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2181, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 18:34:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2182, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 18:34:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2183, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-16 18:34:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2184, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 18:35:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2185, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-16 18:35:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2186, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 18:36:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2187, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 18:36:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2188, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-16 18:36:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2189, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 18:36:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2190, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-16 18:37:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2191, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-16 18:37:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2192, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-16 18:37:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2193, 17, '13444343434', '127.0.0.1', '0', '登录成功', '2025-12-16 18:38:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2194, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-16 18:38:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2195, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 18:38:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2196, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-16 18:39:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2197, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-16 18:39:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2198, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 09:34:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2199, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-17 09:40:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2200, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 09:40:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2201, 17, '13444343434', '127.0.0.1', '0', '登录成功', '2025-12-17 10:02:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2202, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-17 10:02:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2203, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 10:02:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2204, 2, '13388880002', '127.0.0.1', '0', '退出成功', '2025-12-17 10:11:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2205, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 10:12:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2206, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-17 10:21:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2207, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-17 10:22:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2208, 1, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-17 10:24:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2209, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-17 10:25:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2210, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 10:51:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2211, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-17 10:53:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2212, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-17 10:53:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2213, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 10:55:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2214, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 10:56:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2215, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-17 11:04:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2216, 1, '18189138536', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-17 11:12:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2217, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 11:22:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2218, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 11:22:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2219, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 11:23:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2220, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-17 11:23:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2221, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 11:41:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2222, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-17 11:42:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2223, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-17 11:42:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2224, 17, '13444343434', '127.0.0.1', '0', '登录成功', '2025-12-17 11:43:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2225, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 12:06:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2226, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-17 12:34:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2227, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 12:46:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2228, 17, '13488103555', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-17 12:49:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2229, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-17 12:59:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2230, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-17 13:00:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2231, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-17 13:01:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2232, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-17 13:01:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2233, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-17 13:02:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2234, 1, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-17 13:03:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2235, 17, '13444343434', '127.0.0.1', '0', '登录成功', '2025-12-17 13:04:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2236, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 14:08:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2237, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-17 14:15:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2238, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 14:16:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2239, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 14:16:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2240, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 14:25:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2241, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 14:29:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2242, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-17 14:29:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2243, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 14:31:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2244, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-17 14:31:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2245, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-17 14:32:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2246, 1, '18723122132', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-17 14:32:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2247, 1, '龙小孟', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-17 14:33:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2248, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-17 14:34:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2249, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-17 14:37:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2250, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-17 14:37:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2251, 1, '姜二琦', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-17 14:41:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2252, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-17 14:41:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2253, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-17 14:41:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2254, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-12-17 14:42:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2255, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-17 14:43:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2256, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-17 14:48:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2257, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 14:49:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2258, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-17 15:24:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2259, 17, '13566776677', '127.0.0.1', '0', '老师登录成功', '2025-12-17 15:26:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2260, 17, '13566776677', '127.0.0.1', '0', '退出成功', '2025-12-17 15:43:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2261, 17, '13455543334', '127.0.0.1', '0', '老师登录成功', '2025-12-17 15:44:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2262, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-12-17 15:58:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2263, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-17 15:59:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2264, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 16:08:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2265, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-17 16:08:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2266, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-17 16:09:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2267, 17, '13444343434', '127.0.0.1', '0', '老师登录成功', '2025-12-17 16:09:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2268, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-17 16:09:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2269, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2025-12-17 16:09:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2270, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-17 16:09:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2271, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-17 16:09:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2272, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 16:10:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2273, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-17 16:10:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2274, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-17 16:10:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2275, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 16:10:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2276, 2, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 16:11:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2277, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 16:11:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2278, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 16:11:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2279, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-17 16:12:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2280, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-17 16:12:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2281, 1, '13388990055', '127.0.0.1', '0', '老师登录成功', '2025-12-17 16:12:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2282, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-17 16:44:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2283, 17, '13566776677', '127.0.0.1', '0', '老师登录成功', '2025-12-17 16:45:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2284, 17, '13566776677', '127.0.0.1', '0', '退出成功', '2025-12-17 16:47:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2285, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-17 16:48:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2286, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-17 16:55:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2287, 1, '13388990055', '127.0.0.1', '0', '老师登录成功', '2025-12-17 16:55:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2288, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-17 17:55:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2289, 17, '13566776677', '127.0.0.1', '0', '老师登录成功', '2025-12-17 17:56:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2290, 17, '13566776677', '127.0.0.1', '0', '退出成功', '2025-12-17 17:56:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2291, 17, '13455543334', '127.0.0.1', '0', '老师登录成功', '2025-12-17 17:57:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2292, 17, '13455543334', '127.0.0.1', '0', '登录成功', '2025-12-17 18:05:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2293, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-12-17 18:05:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2294, 17, '13455543334', '127.0.0.1', '0', '老师登录成功', '2025-12-17 18:06:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2295, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2025-12-17 18:06:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2296, 17, '13455543334', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-17 18:06:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2297, 1, '13388990055', '127.0.0.1', '0', '退出成功', '2025-12-17 18:20:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2298, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-17 18:21:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2299, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-18 10:00:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2300, 17, '13444343434', '127.0.0.1', '0', '老师登录成功', '2025-12-18 10:00:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2301, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-18 10:00:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2302, 2, '13466666666', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-18 10:07:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2303, 2, '13466666666', '127.0.0.1', '0', '退出成功', '2025-12-18 10:08:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2304, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-12-18 10:08:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2305, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2025-12-18 10:13:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2306, 2, '王二小', '127.0.0.1', '0', '退出成功', '2025-12-18 10:17:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2307, 17, '13778787878', '127.0.0.1', '0', '学生登录成功', '2025-12-18 10:17:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2308, 17, '曹操', '127.0.0.1', '0', '退出成功', '2025-12-18 10:26:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2309, 17, '13566776677', '127.0.0.1', '0', '老师登录成功', '2025-12-18 10:27:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2310, 17, '13566776677', '127.0.0.1', '0', '退出成功', '2025-12-18 10:28:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2311, 17, '13455543334', '127.0.0.1', '0', '老师登录成功', '2025-12-18 10:30:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2312, 1, '13388990044', '127.0.0.1', '0', '老师登录成功', '2025-12-18 10:37:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2313, 17, '13444343434', '127.0.0.1', '0', '登录成功', '2025-12-18 11:11:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2314, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-18 11:11:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2315, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-18 11:12:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2316, 17, '13455543334', '127.0.0.1', '0', '退出成功', '2025-12-18 11:14:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2317, 17, '13778787878', '127.0.0.1', '0', '学生登录成功', '2025-12-18 11:14:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2318, 17, '曹操', '127.0.0.1', '0', '退出成功', '2025-12-18 11:15:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2319, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-18 11:16:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2320, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-18 11:25:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2321, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-18 11:25:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2322, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-18 11:25:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2323, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-18 15:02:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2324, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-18 15:24:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2325, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-18 15:25:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2326, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-18 15:31:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2327, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-18 16:24:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2328, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-18 16:34:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2329, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-18 16:49:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2330, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-18 17:08:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2331, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-18 17:09:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2332, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-18 17:09:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2333, 1, '18189138536', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-18 17:14:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2334, 17, '13778787878', '127.0.0.1', '0', '学生登录成功', '2025-12-18 17:15:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2335, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2025-12-18 17:15:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2336, 1, '姜二琦', '127.0.0.1', '0', '退出成功', '2025-12-18 17:16:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2337, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2025-12-18 17:16:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2338, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-18 17:16:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2339, 1, '姜二琦', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-18 17:18:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2340, 1, '201511211', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-18 17:18:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2341, 1, '姜二琦', '127.0.0.1', '0', '退出成功', '2025-12-18 17:22:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2342, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-12-18 17:23:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2343, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-18 17:23:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2344, 17, '13778787878', '127.0.0.1', '0', '学生登录成功', '2025-12-18 17:23:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2345, 1, '18723122132', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-18 17:24:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2346, 17, '13312666666', '127.0.0.1', '0', '学生登录成功', '2025-12-18 17:32:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2347, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-18 17:33:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2348, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-18 17:33:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2349, 1, '201511211', '127.0.0.1', '0', '学生登录成功', '2025-12-18 17:37:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2350, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-18 17:47:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2351, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-18 17:47:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2352, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-18 17:58:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2353, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-18 17:58:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2354, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-18 18:04:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2355, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-18 18:04:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2356, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-18 18:04:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2357, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-18 18:04:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2358, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-18 18:05:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2359, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-18 18:05:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2360, 17, '张菲', '127.0.0.1', '0', '退出成功', '2025-12-18 18:09:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2361, 17, '13778787878', '127.0.0.1', '0', '学生登录成功', '2025-12-18 18:09:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2362, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-18 18:15:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2363, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-18 18:15:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2364, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-18 18:30:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2365, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-18 18:30:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2366, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-19 09:47:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2367, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-19 09:52:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2368, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-19 09:53:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2369, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2025-12-19 10:15:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2370, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-21 22:00:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2371, 1, '201511211', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-22 10:07:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2372, 21, '15202903076', '127.0.0.1', '0', '学生登录成功', '2025-12-22 10:48:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2373, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-12-22 10:49:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2374, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-22 10:50:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2375, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-22 10:50:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2376, 1, '姜二琦', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-22 10:57:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2377, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-12-22 10:57:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2378, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-22 11:07:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2379, 1, '201511211', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2025-12-22 11:07:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2380, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-22 15:24:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2381, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-22 15:24:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2382, 1, 'yzadmin', '127.0.0.1', '0', '退出成功', '2025-12-22 15:25:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2383, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-22 15:26:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2384, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-22 15:26:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2385, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-22 15:33:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2386, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-22 15:57:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2387, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-22 15:58:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2388, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-22 16:12:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2389, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-22 16:13:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2390, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-22 16:13:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2391, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-22 16:13:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2392, 1, '姜二琦', '127.0.0.1', '0', '退出成功', '2025-12-22 16:26:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2393, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-22 16:26:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2394, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-22 16:27:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2395, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-22 16:28:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2396, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-22 16:28:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2397, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-12-22 16:28:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2398, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-22 16:30:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2399, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-12-22 16:30:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2400, 1, 'yzadmin', '127.0.0.1', '0', '退出成功', '2025-12-22 17:07:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2401, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-22 17:07:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2402, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-22 17:46:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2403, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-22 17:47:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2404, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-22 17:54:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2405, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-22 17:55:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2406, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-22 17:55:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2407, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-12-22 17:55:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2408, 1, 'yzadmin', '127.0.0.1', '0', '退出成功', '2025-12-23 11:44:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2409, 1, 'yzadmin', '127.0.0.1', '0', '退出成功', '2025-12-23 11:44:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2410, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-23 14:04:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2411, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-23 14:27:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2412, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-23 14:27:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2413, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-23 14:33:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2414, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-23 14:33:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2415, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-23 14:34:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2416, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-23 14:34:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2417, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-23 14:35:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2418, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-23 14:35:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2419, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-23 14:42:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2420, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2025-12-23 14:43:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2421, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2025-12-23 14:43:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2422, 17, '13444343434', '127.0.0.1', '0', '登录成功', '2025-12-23 14:44:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2423, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-23 14:44:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2424, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-23 14:46:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2425, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-23 14:49:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2426, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-23 14:49:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2427, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-23 14:49:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2428, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-23 14:50:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2429, 1, '201511211', '127.0.0.1', '0', '学生登录成功', '2025-12-23 14:52:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2430, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-23 15:32:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2431, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-23 15:33:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2432, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-23 16:07:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2433, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-23 16:08:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2434, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-23 16:09:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2435, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-23 16:09:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2436, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-23 16:17:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2437, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2025-12-23 16:17:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2438, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-23 16:20:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2439, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-23 16:20:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2440, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-23 16:21:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2441, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-23 16:21:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2442, 1, '王武', '127.0.0.1', '0', '退出成功', '2025-12-23 16:25:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2443, 17, '13444343434', '127.0.0.1', '0', '登录成功', '2025-12-23 16:25:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2444, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2025-12-23 16:25:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2445, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2025-12-23 16:26:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2446, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2025-12-23 16:29:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2447, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-23 16:29:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2448, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-23 16:49:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2449, 1, '姜二琦', '127.0.0.1', '0', '退出成功', '2025-12-23 16:51:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2450, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-23 16:51:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2451, 1, '姜二琦', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-23 16:51:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2452, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-23 16:54:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2453, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-23 16:58:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2454, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-23 16:58:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2455, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-23 17:02:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2456, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-23 17:07:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2457, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-23 17:09:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2458, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-23 17:11:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2459, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-23 17:15:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2460, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-23 17:18:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2461, 1, '姜二琦', '127.0.0.1', '0', '退出成功', '2025-12-23 17:19:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2462, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-12-23 17:19:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2463, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2025-12-23 17:19:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2464, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-23 17:20:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2465, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-24 10:02:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2466, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2025-12-24 10:02:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2467, 1, 'yzadmin', '127.0.0.1', '0', '退出成功', '2025-12-25 14:11:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2468, 1, 'yzadmin', '127.0.0.1', '0', '退出成功', '2025-12-25 14:11:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2469, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-25 14:27:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2470, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-25 15:19:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2471, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-25 15:25:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2472, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-25 15:46:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2473, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2025-12-25 20:52:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2474, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-25 20:54:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2475, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-25 20:57:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2476, 1, 'admin', '127.0.0.1', '0', '登录成功', '2025-12-26 15:43:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2477, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2025-12-29 12:05:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2478, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2025-12-29 14:22:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2479, 1, 'admin', '127.0.0.1', '0', '退出成功', '2025-12-29 14:23:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2480, 1, '201511211', '127.0.0.1', '0', '学生登录成功', '2025-12-31 16:47:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2481, 1, '201511211', '127.0.0.1', '0', '学生登录成功', '2026-01-04 10:14:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2482, 1, '201511211', '127.0.0.1', '0', '学生登录成功', '2026-01-04 10:16:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2483, 1, '姜二琦', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-04 10:25:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2484, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2026-01-04 10:26:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2485, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-04 10:26:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2486, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-04 10:27:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2487, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-04 10:36:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2488, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-04 10:41:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2489, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-04 10:41:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2490, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-04 10:42:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2491, 1, '201511211', '127.0.0.1', '0', '学生登录成功', '2026-01-04 10:48:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2492, 1, '201511211', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2026-01-04 10:49:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2493, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-04 10:50:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2494, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-04 10:51:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2495, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-04 10:52:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2496, 1, '15202903074', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-04 10:52:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2497, 1, '姜二琦', '127.0.0.1', '0', '退出成功', '2026-01-04 10:58:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2498, 1, '18189138536', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2026-01-04 10:58:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2499, 1, '15202903074', '127.0.0.1', '0', '退出成功', '2026-01-04 11:35:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2500, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-04 11:35:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2501, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-04 12:12:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2502, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-04 12:12:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2503, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-04 15:04:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2504, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2026-01-04 15:04:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2505, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-04 15:04:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2506, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2026-01-04 15:04:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2507, 1, '姜二琦', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-04 15:21:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2508, 1, '15388888888', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2026-01-04 15:23:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2509, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-04 15:31:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2510, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-04 15:31:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2511, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-06 15:37:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2512, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-06 15:39:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2513, 2, '13388880002', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2026-01-06 15:39:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2514, 2, '13388880002', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-06 15:39:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2515, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2026-01-06 15:39:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2516, 1, '龙小孟', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-06 15:40:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2517, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2026-01-06 15:40:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2518, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2026-01-06 15:41:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2519, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-06 16:13:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2520, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-10 21:23:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2521, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 21:23:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2522, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-10 21:26:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2523, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 21:31:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2524, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-10 21:32:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2525, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 21:32:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2526, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2026-01-10 21:32:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2527, 1, '王武', '127.0.0.1', '0', '退出成功', '2026-01-10 21:32:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2528, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 21:33:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2529, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 21:34:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2530, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 21:36:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2531, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 21:36:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2532, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 21:37:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2533, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-10 21:56:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2534, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-10 21:56:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2535, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-10 21:56:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2536, 17, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 21:57:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2537, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 21:58:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2538, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:04:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2539, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 22:04:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2540, 12, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:05:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2541, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 22:05:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2542, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:10:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2543, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:10:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2544, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:10:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2545, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:10:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2546, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-10 22:15:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2547, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:17:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2548, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2026-01-10 22:17:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2549, 1, '王武', '127.0.0.1', '0', '退出成功', '2026-01-10 22:19:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2550, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 22:19:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2551, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:52:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2552, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2026-01-10 22:52:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2553, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-10 22:53:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2554, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2026-01-10 22:53:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2555, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-10 22:53:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2556, 17, '13444343434', '127.0.0.1', '0', '登录成功', '2026-01-10 22:54:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2557, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2026-01-10 22:54:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2558, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 22:56:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2559, 12, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:58:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2560, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-10 22:58:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2561, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:58:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2562, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 22:58:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2563, 17, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:58:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2564, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 22:58:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2565, 12, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 22:59:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2566, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 22:59:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2567, 17, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 23:02:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2568, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-10 23:02:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2569, 2, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 23:02:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2570, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2026-01-10 23:02:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2571, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 23:49:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2572, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 23:49:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2573, 17, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 23:49:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2574, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 23:49:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2575, 12, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 23:49:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2576, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 23:50:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2577, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-10 23:53:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2578, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2026-01-10 23:54:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2579, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-10 23:55:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2580, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-10 23:55:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2581, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-10 23:55:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2582, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2026-01-10 23:56:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2583, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2026-01-10 23:58:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2584, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-10 23:58:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2585, 13, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 00:13:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2586, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 00:14:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2587, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2026-01-11 20:36:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2588, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-11 20:36:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2589, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2026-01-11 20:36:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2590, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-11 20:39:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2591, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 20:39:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2592, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 20:39:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2593, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2026-01-11 20:39:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2594, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-11 20:39:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2595, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-11 20:40:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2596, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 20:40:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2597, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 20:40:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2598, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 20:52:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2599, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 20:52:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2600, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 20:54:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2601, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 20:54:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2602, 12, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 20:54:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2603, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 20:54:36'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2604, 12, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 20:54:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2605, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 20:55:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2606, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 21:11:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2607, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 21:11:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2608, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-11 21:14:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2609, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 21:15:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2610, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-11 21:15:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2611, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-11 21:16:28'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2612, 1, '15666666666', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2026-01-11 21:17:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2613, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 21:20:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2614, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 21:20:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2615, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2026-01-11 21:21:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2616, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-11 21:24:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2617, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 21:24:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2618, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-11 21:36:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2619, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-11 21:36:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2620, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-11 21:36:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2621, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-11 21:36:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2622, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 21:37:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2623, 12, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-11 21:38:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2624, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2026-01-11 21:38:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2625, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-11 21:42:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2626, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2026-01-11 21:42:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2627, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2026-01-11 21:43:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2628, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-11 21:47:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2629, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2026-01-11 21:47:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2630, 1, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-11 21:51:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2631, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-11 21:51:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2632, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-11 21:51:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2633, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 21:51:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2634, 1, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-11 21:51:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2635, 1, '龙小孟', '127.0.0.1', '0', '退出成功', '2026-01-11 22:13:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2636, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-11 22:13:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2637, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-12 09:43:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2638, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-12 10:46:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2639, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2026-01-12 10:46:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2640, 1, '王武', '127.0.0.1', '0', '退出成功', '2026-01-12 10:51:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2641, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-12 10:51:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2642, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-12 11:23:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2643, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2026-01-12 11:23:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2644, 1, '王武', '127.0.0.1', '0', '退出成功', '2026-01-12 11:28:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2645, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2026-01-12 11:28:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2646, 1, '王武', '127.0.0.1', '0', '退出成功', '2026-01-12 11:29:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2647, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2026-01-12 11:29:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2648, 1, '王武', '127.0.0.1', '0', '退出成功', '2026-01-12 11:52:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2649, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2026-01-12 11:52:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2650, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-12 11:55:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2651, 1, '18723122132', '127.0.0.1', '0', '学生登录成功', '2026-01-12 11:57:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2652, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-12 11:58:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2653, 1, '王武', '127.0.0.1', '0', '退出成功', '2026-01-12 12:00:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2654, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2026-01-12 12:00:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2655, 1, '13121312312', '127.0.0.1', '0', '学生登录成功', '2026-01-12 14:02:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2656, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-14 10:13:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2657, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-14 10:25:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2658, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-14 11:13:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2659, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-14 11:13:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2660, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-14 11:20:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2661, 1, '13188889999', '127.0.0.1', '0', '登录成功', '2026-01-14 11:21:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2662, 1, '13188889999', '127.0.0.1', '0', '退出成功', '2026-01-14 11:21:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2663, 1, '13188889999', '127.0.0.1', '0', '登录成功', '2026-01-14 11:21:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2664, 1, '13188889999', '127.0.0.1', '0', '退出成功', '2026-01-14 11:21:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2665, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-14 11:21:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2666, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-14 11:24:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2667, 1, '15377778888', '127.0.0.1', '0', '学生登录成功', '2026-01-14 11:24:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2668, 1, 'test999', '127.0.0.1', '0', '退出成功', '2026-01-14 11:24:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2669, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-14 11:25:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2670, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-14 11:25:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2671, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-14 11:25:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2672, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-14 11:58:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2673, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-14 12:00:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2674, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-14 12:00:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2675, 1, '13811223344', '127.0.0.1', '0', '学生登录成功', '2026-01-14 12:00:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2676, 1, 'st888', '127.0.0.1', '0', '退出成功', '2026-01-14 12:01:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2677, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-14 12:01:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2678, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-14 15:32:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2679, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-14 15:32:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2680, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-14 15:40:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2681, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-14 15:40:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2682, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-14 17:17:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2683, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-15 09:46:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2684, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-15 16:32:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2685, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-16 10:23:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2686, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-16 11:03:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2687, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 15:01:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2688, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 15:05:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2689, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-16 15:05:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2690, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 15:18:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2691, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 15:18:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2692, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 15:28:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2693, 21, '15202903075', '127.0.0.1', '0', '登录成功', '2026-01-16 15:29:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2694, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2026-01-16 15:29:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2695, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-16 15:30:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2696, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 15:30:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2697, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 15:31:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2698, 22, '13384994320', '127.0.0.1', '0', '登录成功', '2026-01-16 15:31:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2699, 22, '13384994320', '127.0.0.1', '0', '退出成功', '2026-01-16 15:42:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2700, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 15:43:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2701, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 15:43:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2702, 1, '15202903074', '127.0.0.1', '0', '老师登录成功', '2026-01-16 15:44:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2703, 1, '15202903074', '127.0.0.1', '0', '退出成功', '2026-01-16 15:44:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2704, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-16 15:44:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2705, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 15:44:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2706, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 15:45:00'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2707, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 15:46:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2708, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2026-01-16 15:48:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2709, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-16 15:50:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2710, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 15:51:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2711, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 15:55:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2712, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 15:55:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2713, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 15:55:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2714, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 15:56:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2715, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 15:56:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2716, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 16:02:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2717, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 16:09:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2718, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 16:26:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2719, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-16 16:29:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2720, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 16:30:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2721, 1, '15666666666', '127.0.0.1', '0', '老师登录成功', '2026-01-16 16:30:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2722, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-16 16:30:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2723, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2026-01-16 16:30:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2724, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-16 16:30:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2725, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2026-01-16 16:30:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2726, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-16 16:30:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2727, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 16:30:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2728, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 16:33:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2729, 1, '15666666666', '127.0.0.1', '0', '登录成功', '2026-01-16 16:34:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2730, 1, '15666666666', '127.0.0.1', '0', '退出成功', '2026-01-16 16:35:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2731, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-16 16:35:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2732, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 16:35:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2733, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 16:35:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2734, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-16 16:38:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2735, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-16 17:02:21'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2736, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 17:02:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2737, 2, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 17:02:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2738, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '老师登录成功', '2026-01-16 17:03:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2739, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-16 17:03:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2740, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 17:07:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2741, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-16 17:38:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2742, 1, 'admin', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-16 17:39:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2743, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-16 22:59:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2744, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2026-01-19 11:09:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2745, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-19 11:09:53'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2746, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2026-01-19 11:10:54'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2747, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-19 11:12:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2748, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2026-01-19 11:13:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2749, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-19 11:13:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2750, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2026-01-19 11:13:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2751, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-19 11:13:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2752, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2026-01-19 11:14:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2753, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-19 11:18:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2754, 2, '13388880001', '127.0.0.1', '0', '老师登录成功', '2026-01-19 11:18:41'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2755, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-19 11:18:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2756, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2026-01-19 11:18:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2757, 17, '13312666666', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2026-01-19 11:40:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2758, 17, '张菲', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-19 11:40:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2759, 17, '13444343434', '0:0:0:0:0:0:0:1%0', '0', '登录成功', '2026-01-19 11:40:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2760, 17, '13444343434', '127.0.0.1', '0', '退出成功', '2026-01-19 11:40:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2761, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2026-01-19 11:40:33'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2762, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 11:45:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2763, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-19 11:55:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2764, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 11:55:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2765, 2, '13588888888', '127.0.0.1', '0', '学生登录成功', '2026-01-19 11:55:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2766, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 11:56:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2767, 2, '13388880001', '127.0.0.1', '0', '登录成功', '2026-01-19 11:56:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2768, 2, '13588888888', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2026-01-19 12:04:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2769, 2, '王二小', '0:0:0:0:0:0:0:1%0', '0', '退出成功', '2026-01-19 12:23:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2770, 1, '18189138536', '0:0:0:0:0:0:0:1%0', '0', '学生登录成功', '2026-01-19 12:24:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2771, 2, '王二小', '127.0.0.1', '0', '退出成功', '2026-01-19 12:39:59'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2772, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2026-01-19 12:40:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2773, 1, '姜二琦', '127.0.0.1', '0', '退出成功', '2026-01-19 12:47:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2774, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-19 12:48:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2775, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 12:48:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2776, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 12:48:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2777, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 12:49:47'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2778, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 12:50:40'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2779, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 12:51:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2780, 1, 'admin', '113.132.46.175', '0', '退出成功', '2026-01-19 13:08:01'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2781, 1, 'admin', '113.132.46.175', '0', '登录成功', '2026-01-19 13:08:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2782, 2, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 13:13:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2783, 2, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 13:14:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2784, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 13:14:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2785, 2, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 13:14:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2786, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-19 13:14:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2787, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 13:14:37'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2788, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 13:14:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2789, 2, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 13:18:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2790, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2026-01-19 13:19:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2791, 1, 'admin', '222.90.239.112', '0', '登录成功', '2026-01-19 13:24:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2792, 1, '姜二琦', '222.90.239.112', '0', '退出成功', '2026-01-19 13:27:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2793, 1, '18189138536', '222.90.239.112', '0', '学生登录成功', '2026-01-19 13:27:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2794, 2, '13388880001', '127.0.0.1', '0', '退出成功', '2026-01-19 14:17:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2795, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 14:17:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2796, 2, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 14:20:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2797, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 14:20:25'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2798, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2026-01-19 14:21:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2799, 1, '姜二琦', '127.0.0.1', '0', '退出成功', '2026-01-19 14:32:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2800, 1, '18189138536', '127.0.0.1', '0', '学生登录成功', '2026-01-19 14:32:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2801, 1, 'admin', '113.132.46.175', '0', '退出成功', '2026-01-19 15:19:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2802, 1, 'admin', '113.132.46.175', '0', '登录成功', '2026-01-19 15:19:15'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2803, 1, 'admin', '113.132.46.175', '0', '退出成功', '2026-01-19 15:19:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2804, 1, '15666666666', '113.132.46.175', '0', '登录成功', '2026-01-19 15:19:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2805, 1, '15666666666', '113.132.46.175', '0', '退出成功', '2026-01-19 15:19:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2806, 2, '13388880002', '113.132.46.175', '0', '登录成功', '2026-01-19 15:19:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2807, 2, '13388880002', '113.132.46.175', '0', '退出成功', '2026-01-19 15:19:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2808, 17, '13488103555', '113.132.46.175', '0', '登录成功', '2026-01-19 15:20:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2809, 17, '13488103555', '113.132.46.175', '0', '退出成功', '2026-01-19 15:20:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2810, 17, '13488103555', '113.132.46.175', '0', '登录成功', '2026-01-19 15:20:56'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2811, 17, '13488103555', '113.132.46.175', '0', '退出成功', '2026-01-19 15:21:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2812, 17, '13488103555', '113.132.46.175', '0', '登录成功', '2026-01-19 15:21:49'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2813, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 15:28:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2814, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2026-01-19 15:28:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2815, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 15:44:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2816, 1, 'admin', '123.139.55.124', '0', '登录成功', '2026-01-19 15:52:31'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2817, 1, 'admin', '123.139.55.124', '0', '退出成功', '2026-01-19 15:58:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2818, 1, 'admin', '123.139.55.124', '0', '登录成功', '2026-01-19 15:59:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2819, 1, 'admin', '123.139.55.124', '0', '退出成功', '2026-01-19 15:59:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2820, 1, 'admin', '123.139.55.124', '0', '登录成功', '2026-01-19 16:01:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2821, 12, 'admin', '123.139.55.124', '0', '退出成功', '2026-01-19 16:03:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2822, 1, 'admin', '123.139.55.124', '0', '老师登录成功', '2026-01-19 16:03:29'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2823, 1, 'admin', '123.139.55.124', '0', '退出成功', '2026-01-19 16:08:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2824, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2026-01-19 16:13:09'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2825, 21, '15202903075', '113.200.47.162', '0', '老师登录成功', '2026-01-19 16:17:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2826, 1, '15666666666', '113.200.47.162', '0', '老师登录成功', '2026-01-19 16:18:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2827, 1, '15666666666', '113.200.47.162', '0', '退出成功', '2026-01-19 16:18:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2828, 12, '15202903073', '113.200.47.162', '0', '老师登录成功', '2026-01-19 16:18:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2829, 12, '15202903073', '113.200.47.162', '0', '退出成功', '2026-01-19 16:18:42'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2830, 1, 'admin', '113.200.47.162', '0', '登录成功', '2026-01-19 16:18:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2831, 12, 'admin', '113.200.47.162', '0', '退出成功', '2026-01-19 16:19:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2832, 12, '15202903073', '113.200.47.162', '0', '登录成功', '2026-01-19 16:19:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2833, 1, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:24:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2834, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2026-01-19 16:24:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2835, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:24:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2836, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2026-01-19 16:24:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2837, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:25:14'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2838, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2026-01-19 16:29:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2839, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:31:07'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2840, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2026-01-19 16:31:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2841, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:31:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2842, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2026-01-19 16:31:43'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2843, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:31:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2844, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2026-01-19 16:31:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2845, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:31:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2846, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2026-01-19 16:32:05'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2847, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:33:18'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2848, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2026-01-19 16:33:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2849, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:33:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2850, 17, '13488103555', '127.0.0.1', '0', '老师登录成功', '2026-01-19 16:33:35'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2851, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:42:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2852, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2026-01-19 16:42:34'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2853, 17, '13488103555', '127.0.0.1', '0', '退出成功', '2026-01-19 16:54:39'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2854, 1, 'admin', '127.0.0.1', '0', '老师登录成功', '2026-01-19 16:54:46'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2855, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 16:54:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2856, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 16:54:55'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2857, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 16:55:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2858, 22, '13384994320', '127.0.0.1', '0', '老师登录成功', '2026-01-19 16:55:20'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2859, 22, '13384994320', '127.0.0.1', '0', '退出成功', '2026-01-19 16:55:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2860, 1, 'admin', '127.0.0.1', '0', '登录成功', '2026-01-19 16:56:11'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2861, 1, 'admin', '127.0.0.1', '0', '退出成功', '2026-01-19 16:56:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2862, 23, '13384994320', '127.0.0.1', '0', '老师登录成功', '2026-01-19 16:57:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2863, 23, '13384994320', '127.0.0.1', '0', '退出成功', '2026-01-19 16:57:22'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2864, 17, '13488103555', '113.132.46.175', '0', '退出成功', '2026-01-19 16:57:52'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2865, 1, 'admin', '113.132.46.175', '0', '登录成功', '2026-01-19 16:58:03'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2866, 1, 'admin', '113.132.46.175', '0', '退出成功', '2026-01-19 16:58:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2867, 24, '13384994321', '113.132.46.175', '0', '老师登录成功', '2026-01-19 16:58:50'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2868, 23, '13384994320', '127.0.0.1', '0', '老师登录成功', '2026-01-19 17:00:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2869, 24, '13384994321', '113.132.46.175', '0', '退出成功', '2026-01-19 17:18:44'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2870, 24, '13384994321', '113.132.46.175', '0', '老师登录成功', '2026-01-19 17:18:48'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2871, 23, '13384994320', '127.0.0.1', '0', '退出成功', '2026-01-19 17:19:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2872, 24, '13384994321', '127.0.0.1', '0', '老师登录成功', '2026-01-19 17:19:24'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2873, 24, '13384994321', '113.132.46.175', '0', '退出成功', '2026-01-19 17:23:57'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2874, 23, '13384994320', '113.132.46.175', '0', '老师登录成功', '2026-01-19 17:24:06'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2875, 23, '13384994320', '113.132.46.175', '0', '退出成功', '2026-01-19 17:24:19'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2876, 1, 'admin', '113.132.46.175', '0', '登录成功', '2026-01-19 17:24:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2877, 1, 'admin', '113.132.46.175', '0', '退出成功', '2026-01-19 17:25:26'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2878, 24, '13384994321', '113.132.46.175', '0', '老师登录成功', '2026-01-19 17:25:32'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2879, 24, '13384994321', '113.132.46.175', '0', '退出成功', '2026-01-19 17:25:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2880, 24, '13384994321', '113.132.46.175', '0', '老师登录成功', '2026-01-19 17:26:04'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2881, 24, '13384994321', '113.132.46.175', '0', '退出成功', '2026-01-19 17:26:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2882, 23, '13384994320', '113.132.46.175', '0', '老师登录成功', '2026-01-19 17:26:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2883, 24, '13384994321', '127.0.0.1', '0', '退出成功', '2026-01-19 17:29:58'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2884, 23, '13384994320', '127.0.0.1', '0', '老师登录成功', '2026-01-19 17:30:02'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2885, 23, '13384994320', '127.0.0.1', '0', '退出成功', '2026-01-19 17:30:10'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2886, 23, '13384994320', '127.0.0.1', '0', '老师登录成功', '2026-01-19 17:30:13'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2887, 23, '13384994320', '127.0.0.1', '0', '退出成功', '2026-01-19 17:30:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2888, 24, '13384994321', '127.0.0.1', '0', '老师登录成功', '2026-01-19 17:30:23'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2889, 24, '13384994321', '127.0.0.1', '0', '退出成功', '2026-01-19 17:33:12'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2890, 23, '13384994320', '127.0.0.1', '0', '老师登录成功', '2026-01-19 17:33:17'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2891, 23, '13384994320', '113.132.46.175', '0', '退出成功', '2026-01-19 17:34:16'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2892, 2, '13388880002', '113.132.46.175', '0', '老师登录成功', '2026-01-19 17:34:27'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2893, 2, '13388880002', '113.132.46.175', '0', '退出成功', '2026-01-19 17:34:30'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2894, 2, '13388880002', '113.132.46.175', '0', '登录成功', '2026-01-19 17:34:38'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2895, 2, '13388880002', '113.132.46.175', '0', '退出成功', '2026-01-19 17:34:45'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2896, 17, '13488103555', '113.132.46.175', '0', '登录成功', '2026-01-19 17:34:51'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2897, 23, '13384994320', '127.0.0.1', '0', '退出成功', '2026-01-19 17:40:08'); INSERT INTO `sys_logininfor` (`info_id`, `sch_id`, `user_name`, `ipaddr`, `status`, `msg`, `access_time`) VALUES (2898, 17, '13488103555', '127.0.0.1', '0', '登录成功', '2026-01-19 17:40:45'); COMMIT; -- ---------------------------- -- Table structure for sys_menu -- ---------------------------- DROP TABLE IF EXISTS `sys_menu`; CREATE TABLE `sys_menu` ( `menu_id` bigint NOT NULL AUTO_INCREMENT COMMENT '菜单ID', `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `menu_name` varchar(50) NOT NULL COMMENT '菜单名称', `parent_id` bigint DEFAULT '0' COMMENT '父菜单ID', `order_num` int DEFAULT '0' COMMENT '显示顺序', `path` varchar(200) DEFAULT '' COMMENT '路由地址', `component` varchar(255) DEFAULT NULL COMMENT '组件路径', `query` varchar(255) DEFAULT NULL COMMENT '路由参数', `route_name` varchar(50) DEFAULT '' COMMENT '路由名称', `is_frame` int DEFAULT '1' COMMENT '是否为外链(0是 1否)', `is_sys` int DEFAULT '0' COMMENT '是否是系统菜单', `is_cache` int DEFAULT '0' COMMENT '是否缓存(0缓存 1不缓存)', `menu_type` char(1) DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)', `visible` char(1) DEFAULT '0' COMMENT '菜单状态(0显示 1隐藏)', `status` char(1) DEFAULT '0' COMMENT '菜单状态(0正常 1停用)', `perms` varchar(100) DEFAULT NULL COMMENT '权限标识', `icon` varchar(100) DEFAULT '#' COMMENT '菜单图标', `module` varchar(100) DEFAULT NULL COMMENT '所属模块', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) DEFAULT '' COMMENT '备注', PRIMARY KEY (`menu_id`), KEY `idx_sys_menu_type_status` (`menu_type`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=2247 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='菜单权限表'; -- ---------------------------- -- Records of sys_menu -- ---------------------------- BEGIN; INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, NULL, '系统管理', 0, 1, 'system', NULL, '', '', 1, 1, 0, 'M', '0', '0', '', 'system', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '系统管理目录'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, NULL, '系统监控', 0, 2, 'monitor', NULL, '', '', 1, 1, 0, 'M', '0', '0', '', 'monitor', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '系统监控目录'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, NULL, '系统工具', 0, 3, 'tool', NULL, '', '', 1, 1, 0, 'M', '0', '0', '', 'tool', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '系统工具目录'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, NULL, '若依官网', 0, 4, 'http://ruoyi.vip', NULL, '', '', 0, 1, 0, 'M', '0', '0', '', 'guide', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '若依官网地址'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (100, NULL, '用户管理', 1, 1, 'user', 'system/user/index', '', '', 1, 1, 0, 'C', '0', '0', 'system:user:list', 'user', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '用户管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (101, NULL, '角色管理', 1, 2, 'role', 'system/role/index', '', '', 1, 1, 0, 'C', '0', '0', 'system:role:list', 'peoples', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '角色管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (102, NULL, '菜单管理', 1, 3, 'menu', 'system/menu/index', '', '', 1, 1, 0, 'C', '0', '0', 'system:menu:list', 'tree-table', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '菜单管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (103, NULL, '部门管理', 1, 4, 'dept', 'system/dept/index', '', '', 1, 1, 0, 'C', '0', '0', 'system:dept:list', 'tree', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '部门管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (104, NULL, '岗位管理', 1, 5, 'post', 'system/post/index', '', '', 1, 1, 0, 'C', '0', '0', 'system:post:list', 'post', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '岗位管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (105, NULL, '字典管理', 1, 6, 'dict', 'system/dict/index', '', '', 1, 1, 0, 'C', '0', '0', 'system:dict:list', 'dict', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '字典管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (106, NULL, '参数设置', 1, 7, 'config', 'system/config/index', '', '', 1, 1, 0, 'C', '0', '0', 'system:config:list', 'edit', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '参数设置菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (107, NULL, '通知公告', 1, 8, 'notice', 'system/notice/index', '', '', 1, 1, 0, 'C', '0', '0', 'system:notice:list', 'message', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '通知公告菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (108, NULL, '日志管理', 1, 9, 'log', '', '', '', 1, 1, 0, 'M', '0', '0', '', 'log', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '日志管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, NULL, '在线用户', 2, 1, 'online', 'monitor/online/index', '', '', 1, 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '在线用户菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (110, NULL, '定时任务', 2, 2, 'job', 'monitor/job/index', '', '', 1, 1, 0, 'C', '0', '0', 'monitor:job:list', 'job', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '定时任务菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (111, NULL, 'Sentinel控制台', 2, 3, 'http://localhost:8718', '', '', '', 0, 1, 0, 'C', '0', '0', 'monitor:sentinel:list', 'sentinel', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '流量控制菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (112, NULL, 'Nacos控制台', 2, 4, 'http://localhost:8848/nacos', '', '', '', 0, 1, 0, 'C', '0', '0', 'monitor:nacos:list', 'nacos', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '服务治理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (113, NULL, 'Admin控制台', 2, 5, 'http://localhost:9100/login', '', '', '', 0, 1, 0, 'C', '0', '0', 'monitor:server:list', 'server', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '服务监控菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (114, NULL, '表单构建', 3, 1, 'build', 'tool/build/index', '', '', 1, 1, 0, 'C', '0', '0', 'tool:build:list', 'build', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '表单构建菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (115, NULL, '代码生成', 3, 2, 'gen', 'tool/gen/index', '', '', 1, 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '代码生成菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (116, NULL, '系统接口', 3, 3, 'http://localhost:8080/swagger-ui/index.html', '', '', '', 0, 1, 0, 'C', '0', '0', 'tool:swagger:list', 'swagger', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '系统接口菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (500, NULL, '操作日志', 108, 1, 'operlog', 'system/operlog/index', '', '', 1, 1, 0, 'C', '0', '0', 'system:operlog:list', 'form', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '操作日志菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (501, NULL, '登录日志', 108, 2, 'logininfor', 'system/logininfor/index', '', '', 1, 1, 0, 'C', '0', '0', 'system:logininfor:list', 'logininfor', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, '登录日志菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1000, NULL, '用户列表', 100, 1, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:user:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1001, NULL, '用户新增', 100, 2, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:user:add', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1002, NULL, '用户修改', 100, 3, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:user:edit', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1003, NULL, '用户删除', 100, 4, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:user:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1004, NULL, '用户导出', 100, 5, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:user:export', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1005, NULL, '用户导入', 100, 6, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:user:import', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1006, NULL, '重置密码', 100, 7, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1007, NULL, '角色列表', 101, 1, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:role:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1008, NULL, '角色新增', 101, 2, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:role:add', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1009, NULL, '角色修改', 101, 3, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:role:edit', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1010, NULL, '角色删除', 101, 4, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:role:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1011, NULL, '角色导出', 101, 5, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:role:export', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1012, NULL, '菜单列表', 102, 1, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:menu:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1013, NULL, '菜单新增', 102, 2, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:menu:add', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1014, NULL, '菜单修改', 102, 3, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:menu:edit', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1015, NULL, '菜单删除', 102, 4, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:menu:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1016, NULL, '部门列表', 103, 1, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:dept:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1017, NULL, '部门新增', 103, 2, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:dept:add', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1018, NULL, '部门修改', 103, 3, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:dept:edit', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1019, NULL, '部门删除', 103, 4, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:dept:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1020, NULL, '岗位列表', 104, 1, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:post:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1021, NULL, '岗位新增', 104, 2, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:post:add', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1022, NULL, '岗位修改', 104, 3, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:post:edit', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1023, NULL, '岗位删除', 104, 4, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:post:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1024, NULL, '岗位导出', 104, 5, '', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:post:export', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1025, NULL, '字典列表', 105, 1, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:dict:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1026, NULL, '字典新增', 105, 2, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:dict:add', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1027, NULL, '字典修改', 105, 3, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:dict:edit', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1028, NULL, '字典删除', 105, 4, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:dict:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1029, NULL, '字典导出', 105, 5, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:dict:export', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1030, NULL, '参数列表', 106, 1, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:config:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1031, NULL, '参数新增', 106, 2, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:config:add', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1032, NULL, '参数修改', 106, 3, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:config:edit', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1033, NULL, '参数删除', 106, 4, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:config:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1034, NULL, '参数导出', 106, 5, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:config:export', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1035, NULL, '公告列表', 107, 1, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:notice:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1036, NULL, '公告新增', 107, 2, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:notice:add', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1037, NULL, '公告修改', 107, 3, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:notice:edit', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1038, NULL, '公告删除', 107, 4, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:notice:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1039, NULL, '操作列表', 500, 1, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:operlog:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1040, NULL, '操作删除', 500, 2, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:operlog:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1041, NULL, '日志导出', 500, 3, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:operlog:export', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1042, NULL, '登录列表', 501, 1, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:logininfor:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1043, NULL, '登录删除', 501, 2, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:logininfor:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1044, NULL, '日志导出', 501, 3, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:logininfor:export', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1045, NULL, '账户解锁', 501, 4, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'system:logininfor:unlock', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1046, NULL, '在线列表', 109, 1, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'monitor:online:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1047, NULL, '批量强退', 109, 2, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1048, NULL, '单条强退', 109, 3, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1049, NULL, '任务列表', 110, 1, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'monitor:job:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1050, NULL, '任务新增', 110, 2, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'monitor:job:add', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1051, NULL, '任务修改', 110, 3, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'monitor:job:edit', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1052, NULL, '任务删除', 110, 4, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'monitor:job:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1053, NULL, '状态修改', 110, 5, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'monitor:job:changeStatus', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1054, NULL, '任务导出', 110, 6, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'monitor:job:export', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1055, NULL, '生成列表', 115, 1, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'tool:gen:query', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1056, NULL, '生成修改', 115, 2, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1057, NULL, '生成删除', 115, 3, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1058, NULL, '导入代码', 115, 2, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'tool:gen:import', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1059, NULL, '预览代码', 115, 4, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1060, NULL, '生成代码', 115, 5, '#', '', '', '', 1, 1, 0, 'F', '0', '0', 'tool:gen:code', '#', NULL, 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2000, NULL, '思政教学', 0, 5, '/root', NULL, NULL, '', 1, 0, 0, 'M', '1', '0', NULL, '#', NULL, 'admin', '2025-10-24 16:52:39', '', NULL, 'SYS_ROOT'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2001, NULL, '用户系统', 2000, 1, '/userSys', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-24 16:53:54', 'admin', '2025-12-09 16:09:01', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2002, NULL, '思政教学', 2000, 2, '/teachingSys', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-24 16:54:35', 'admin', '2025-12-09 16:10:40', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2003, NULL, '思政资源库', 2000, 3, '/resourceSys', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-24 16:55:12', 'admin', '2025-10-24 16:57:52', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2004, NULL, '考试系统', 2000, 4, '/examSys', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-24 16:55:44', 'admin', '2025-10-24 16:57:30', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2005, NULL, '信息系统', 2000, 5, '/infoSys', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-24 16:56:21', 'admin', '2025-10-24 16:57:24', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2006, NULL, '教学分析系统', 2000, 6, '/teachAnalysisSys', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-24 16:57:17', 'admin', '2025-10-24 16:58:04', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2007, NULL, 'AI助教', 2000, 7, '/aiSys', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-10-24 16:58:33', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2008, NULL, '系统设置', 2000, 8, '/settingSys', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-10-24 16:58:57', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2009, NULL, '院校管理', 2001, 1, '/schoolMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-10-24 16:59:46', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2010, NULL, '用户管理', 2001, 2, '/usrMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-24 17:00:17', 'admin', '2025-12-11 16:42:05', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2011, NULL, '角色权限', 2001, 3, '/roleMgr', NULL, NULL, '', 1, 0, 0, 'M', '1', '1', '', '#', NULL, 'admin', '2025-10-24 17:00:41', 'admin', '2025-12-09 16:09:29', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2012, NULL, '课程管理', 2002, 1, '/courseMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-24 17:01:15', 'admin', '2025-12-11 16:42:53', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2013, NULL, '授课管理', 2002, 2, '/homeworkMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-24 17:01:36', 'admin', '2025-12-11 16:42:42', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2014, NULL, '作业管理', 2002, 3, '/teachHomeWorkMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-24 17:02:25', 'admin', '2025-12-10 11:10:28', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2015, NULL, '教师管理', 2010, 1, 'teacher', 'system/teacher/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'system:teacher:list', '#', NULL, 'admin', '2025-10-24 17:18:30', '', NULL, '教师管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2016, NULL, '教师管理列表', 2015, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:teacher:query', '#', NULL, 'admin', '2025-10-24 17:18:30', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2017, NULL, '教师管理新增', 2015, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:teacher:add', '#', NULL, 'admin', '2025-10-24 17:18:30', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2018, NULL, '教师管理修改', 2015, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:teacher:edit', '#', NULL, 'admin', '2025-10-24 17:18:30', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2019, NULL, '教师管理删除', 2015, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:teacher:remove', '#', NULL, 'admin', '2025-10-24 17:18:30', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2020, NULL, '教师管理导出', 2015, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:teacher:export', '#', NULL, 'admin', '2025-10-24 17:18:30', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2021, NULL, '科目章节', 2012, 1, 'chapter', 'teaching/chapter/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'teaching:chapter:list', '#', NULL, 'admin', '2025-10-24 17:52:14', 'admin', '2025-12-09 16:13:06', '章节信息菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2022, NULL, '科目章节列表', 2021, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapter:query', '#', NULL, 'admin', '2025-10-24 17:52:14', 'admin', '2025-12-10 10:34:29', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2023, NULL, '科目章节创建课程', 2021, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chaptercourse:add', '#', NULL, 'admin', '2025-10-24 17:52:14', 'admin', '2025-12-10 15:12:36', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2024, NULL, '科目章节修改课程', 2021, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chaptercourse:edit', '#', NULL, 'admin', '2025-10-24 17:52:14', 'admin', '2025-12-10 15:12:43', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2025, NULL, '科目章节删除课程', 2021, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chaptercourse:remove', '#', NULL, 'admin', '2025-10-24 17:52:14', 'admin', '2025-12-10 15:12:47', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2026, NULL, '科目章节导出章节', 2021, 14, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapter:export', '#', NULL, 'admin', '2025-10-24 17:52:14', 'admin', '2025-12-10 10:43:45', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2027, NULL, '课程信息', 2012, 1, 'course', 'teaching/course/index', NULL, '', 1, 0, 0, 'C', '1', '1', 'teaching:course:list', '#', NULL, 'admin', '2025-10-24 17:52:39', 'admin', '2025-12-09 16:13:16', '课程信息菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2028, NULL, '课程信息列表', 2027, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:course:query', '#', NULL, 'admin', '2025-10-24 17:52:39', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2029, NULL, '课程信息新增', 2027, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:course:add', '#', NULL, 'admin', '2025-10-24 17:52:40', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2030, NULL, '课程信息修改', 2027, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:course:edit', '#', NULL, 'admin', '2025-10-24 17:52:40', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2031, NULL, '课程信息删除', 2027, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:course:remove', '#', NULL, 'admin', '2025-10-24 17:52:40', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2032, NULL, '课程信息导出', 2027, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:course:export', '#', NULL, 'admin', '2025-10-24 17:52:40', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2033, NULL, '课程审核', 2012, 1, 'review', 'teaching/review/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'teaching:review:list', '#', NULL, 'admin', '2025-10-24 17:53:00', 'admin', '2025-12-09 16:13:26', '课程审核记录菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2034, NULL, '课程审核记录列表', 2033, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:review:query', '#', NULL, 'admin', '2025-10-24 17:53:00', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2035, NULL, '课程审核记录新增', 2033, 2, '#', '', NULL, '', 1, 0, 0, 'F', '1', '1', 'teaching:review:add', '#', NULL, 'admin', '2025-10-24 17:53:00', 'admin', '2025-12-10 10:44:32', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2036, NULL, '课程审核记录修改', 2033, 3, '#', '', NULL, '', 1, 0, 0, 'F', '1', '1', 'teaching:review:edit', '#', NULL, 'admin', '2025-10-24 17:53:00', 'admin', '2025-12-10 10:44:38', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2037, NULL, '课程审核记录删除', 2033, 4, '#', '', NULL, '', 1, 0, 0, 'F', '1', '1', 'teaching:review:remove', '#', NULL, 'admin', '2025-10-24 17:53:00', 'admin', '2025-12-10 10:44:43', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2038, NULL, '课程审核记录导出', 2033, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:review:export', '#', NULL, 'admin', '2025-10-24 17:53:00', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2039, NULL, '系统参数管理', 2008, 1, '/sysArgsMgr', NULL, NULL, '', 1, 1, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-10-25 15:21:17', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2041, NULL, '基本信息', 2039, 1, 'baseInfo', 'setting/baseInfo/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'setting:baseInfo:list', '#', NULL, 'admin', '2025-10-25 16:04:18', '', NULL, '基本信息菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2042, NULL, '基本信息修改', 2041, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:baseInfo:edit', '#', NULL, 'admin', '2025-10-25 16:04:18', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2043, NULL, '院校管理', 2008, 2, '/sysSchoolMgr', NULL, NULL, '', 1, 1, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-10-27 16:06:57', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2044, NULL, '系统应用管理', 2008, 3, '/sysAppMgr', NULL, NULL, '', 1, 1, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-10-27 16:10:53', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2045, NULL, '应用管理', 2044, 1, 'apps', 'setting/apps/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'setting:apps:list', '#', NULL, 'admin', '2025-10-27 16:15:52', '', NULL, '应用管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2046, NULL, '应用管理列表', 2045, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:apps:query', '#', NULL, 'admin', '2025-10-27 16:15:52', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2047, NULL, '应用管理修改', 2045, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:apps:edit', '#', NULL, 'admin', '2025-10-27 16:15:52', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2048, NULL, '学校信息', 2043, 1, 'school', 'setting/school/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'setting:school:list', '#', NULL, 'admin', '2025-10-27 22:57:37', '', NULL, '学校信息菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2049, NULL, '学校信息列表', 2048, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:school:query', '#', NULL, 'admin', '2025-10-27 22:57:37', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2050, NULL, '学校信息新增', 2048, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:school:add', '#', NULL, 'admin', '2025-10-27 22:57:37', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2051, NULL, '学校信息修改', 2048, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:school:edit', '#', NULL, 'admin', '2025-10-27 22:57:37', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2052, NULL, '学校信息删除', 2048, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:school:remove', '#', NULL, 'admin', '2025-10-27 22:57:37', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2053, NULL, '科目章节导入章节', 2021, 13, '#', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapter:import', '#', NULL, '张三', '2025-10-28 10:55:20', 'admin', '2025-12-10 10:43:55', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2054, NULL, '角色权限', 2008, 4, '/sysRoleMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-10-29 15:25:13', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2055, NULL, '数据字典', 2008, 5, '/sysDictMgr', NULL, NULL, '', 1, 1, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-10-29 15:26:01', 'admin', '2025-10-29 15:26:18', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2056, NULL, '系统安全管理', 2008, 6, '/sysSecurityMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-10-29 15:27:06', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2057, NULL, '日志管理', 2008, 7, '/sysLogMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-10-29 15:27:36', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2058, NULL, '章节内容信息', 2012, 1, 'chapterContent', 'teaching/chapterContent/index', NULL, '', 1, 0, 0, 'C', '1', '1', 'teaching:chapterContent:list', '#', NULL, 'admin', '2025-10-29 16:15:43', 'admin', '2025-12-09 16:13:36', '章节内容信息菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2059, NULL, '章节内容信息列表', 2058, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapterContent:query', '#', NULL, 'admin', '2025-10-29 16:15:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2060, NULL, '章节内容信息新增', 2058, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapterContent:add', '#', NULL, 'admin', '2025-10-29 16:15:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2061, NULL, '章节内容信息修改', 2058, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapterContent:edit', '#', NULL, 'admin', '2025-10-29 16:15:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2062, NULL, '章节内容信息删除', 2058, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapterContent:remove', '#', NULL, 'admin', '2025-10-29 16:15:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2063, NULL, '章节内容信息导出', 2058, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapterContent:export', '#', NULL, 'admin', '2025-10-29 16:15:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2064, NULL, '操作日志管理', 2057, 1, 'operation-log', 'setting/operation-log/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'system:operlog:list', '#', NULL, 'admin', '2025-10-30 10:25:02', 'admin', '2025-10-31 14:09:35', '操作日志管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2065, NULL, '操作列表', 2064, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:operlog:query', '#', NULL, 'admin', '2025-10-30 10:25:03', 'admin', '2025-10-31 14:10:04', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2066, NULL, '操作删除', 2064, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:operlog:remove', '#', NULL, 'admin', '2025-10-30 10:25:03', 'admin', '2025-10-31 14:10:40', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2067, NULL, '日志导出', 2064, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:operlog:export', '#', NULL, 'admin', '2025-10-30 10:25:03', 'admin', '2025-10-31 14:11:13', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2068, NULL, '系统日志', 2057, 1, 'syslog', 'setting/sys-log/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'syslog:syslog:list', '#', NULL, 'admin', '2025-10-30 10:56:36', '', NULL, '系统日志菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2069, NULL, '系统日志列表', 2068, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'syslog:syslog:query', '#', NULL, 'admin', '2025-10-30 10:56:36', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2070, NULL, '清空日志', 2068, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'syslog:syslog:remove', '#', NULL, 'admin', '2025-10-30 10:56:36', 'admin', '2025-10-30 18:25:21', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2071, NULL, '系统日志导出', 2068, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'syslog:syslog:export', '#', NULL, 'admin', '2025-10-30 10:56:36', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2073, NULL, '标记为已处理', 2068, 4, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'syslog:syslog:edit', '#', NULL, 'admin', '2025-10-30 18:26:37', 'admin', '2025-10-30 18:26:55', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2080, NULL, '学年学期设置', 2009, 1, 'academic', 'system/academic/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'system:academic:list', '#', NULL, 'admin', '2025-10-31 15:24:54', 'admin', '2025-12-09 16:10:10', '学年学期设置菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2081, NULL, '学年学期设置列表', 2080, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:academic:query', '#', NULL, 'admin', '2025-10-31 15:24:54', 'admin', '2025-12-09 16:21:19', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2082, NULL, '学年学期设置新增', 2080, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:academic:add', '#', NULL, 'admin', '2025-10-31 15:24:54', 'admin', '2025-12-09 16:21:39', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2083, NULL, '学年学期设置修改', 2080, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:academic:edit', '#', NULL, 'admin', '2025-10-31 15:24:54', 'admin', '2025-12-09 16:21:45', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2084, NULL, '学年学期设置删除', 2080, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'system:academic:remove', '#', NULL, 'admin', '2025-10-31 15:24:54', 'admin', '2025-12-09 16:22:03', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2085, NULL, '学年学期设置导出', 2080, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '1', 'system:academic:export', '#', NULL, 'admin', '2025-10-31 15:24:54', 'admin', '2025-12-09 16:21:54', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2086, NULL, '组织结构设置', 2009, 1, 'organization', 'setting/organization/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'setting:organization:list', '#', NULL, 'admin', '2025-11-01 10:28:34', 'admin', '2025-12-09 16:10:19', '组织信息菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2087, NULL, '组织结构设置列表', 2086, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:organization:query', '#', NULL, 'admin', '2025-11-01 10:28:34', 'admin', '2025-12-09 16:42:41', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2088, NULL, '组织结构设置新增', 2086, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:organization:add', '#', NULL, 'admin', '2025-11-01 10:28:34', 'admin', '2025-12-09 16:42:47', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2089, NULL, '组织结构设置修改', 2086, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:organization:edit', '#', NULL, 'admin', '2025-11-01 10:28:34', 'admin', '2025-12-09 16:42:52', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2090, NULL, '组织结构设置删除', 2086, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:organization:remove', '#', NULL, 'admin', '2025-11-01 10:28:34', 'admin', '2025-12-09 16:43:00', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2091, NULL, '组织结构设置导出', 2086, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '1', 'setting:organization:export', '#', NULL, 'admin', '2025-11-01 10:28:34', 'admin', '2025-12-09 16:43:05', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2092, NULL, '资源分类管理', 2003, 1, '/resourceCategoryMgr', NULL, NULL, '', 1, 0, 0, 'M', '1', '1', '', '#', NULL, 'admin', '2025-11-03 12:05:42', 'admin', '2025-12-10 16:04:03', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2093, NULL, '资源分类设置', 2092, 1, 'resourceCategory', 'resource/resourceCategory/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'resource:resourceCategory:list', '#', NULL, 'admin', '2025-11-03 14:17:48', 'admin', '2025-11-03 14:25:29', '资源分类设置菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2094, NULL, '资源分类设置列表', 2093, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceCategory:query', '#', NULL, 'admin', '2025-11-03 14:17:48', 'admin', '2025-11-03 14:25:43', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2095, NULL, '资源分类设置新增', 2093, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceCategory:add', '#', NULL, 'admin', '2025-11-03 14:17:48', 'admin', '2025-11-03 14:26:02', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2096, NULL, '资源分类设置修改', 2093, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceCategory:edit', '#', NULL, 'admin', '2025-11-03 14:17:48', 'admin', '2025-11-03 14:26:14', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2097, NULL, '资源分类设置删除', 2093, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceCategory:remove', '#', NULL, 'admin', '2025-11-03 14:17:48', 'admin', '2025-11-03 14:26:26', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2099, NULL, '学科门类设置', 2092, 1, 'subject', 'resource/subject/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'resource:subject:list', '#', NULL, 'admin', '2025-11-03 14:17:58', '', NULL, '学科门类设置菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2100, NULL, '学科门类设置列表', 2099, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:subject:query', '#', NULL, 'admin', '2025-11-03 14:17:58', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2101, NULL, '学科门类设置新增', 2099, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:subject:add', '#', NULL, 'admin', '2025-11-03 14:17:58', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2102, NULL, '学科门类设置修改', 2099, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:subject:edit', '#', NULL, 'admin', '2025-11-03 14:17:58', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2103, NULL, '学科门类设置删除', 2099, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:subject:remove', '#', NULL, 'admin', '2025-11-03 14:17:58', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2104, NULL, '学科门类设置导出', 2099, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:subject:export', '#', NULL, 'admin', '2025-11-03 14:17:58', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2105, NULL, '资源类型设置', 2092, 1, 'resourceType', 'resource/resourceType/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'resource:resourceType:list', '#', NULL, 'admin', '2025-11-03 14:18:06', '', NULL, '资源类型设置菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2106, NULL, '资源类型设置列表', 2105, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceType:query', '#', NULL, 'admin', '2025-11-03 14:18:06', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2107, NULL, '资源类型设置新增', 2105, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceType:add', '#', NULL, 'admin', '2025-11-03 14:18:06', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2108, NULL, '资源类型设置修改', 2105, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceType:edit', '#', NULL, 'admin', '2025-11-03 14:18:06', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2109, NULL, '资源类型设置删除', 2105, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceType:remove', '#', NULL, 'admin', '2025-11-03 14:18:06', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2110, NULL, '资源类型设置导出', 2105, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceType:export', '#', NULL, 'admin', '2025-11-03 14:18:06', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2111, NULL, '资源标签设置', 3, 1, 'resourceTag', 'resource/resourceTag/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'resource:resourceTag:list', '#', NULL, 'admin', '2025-11-03 14:18:16', '', NULL, '资源标签设置菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2112, NULL, '资源标签设置列表', 2111, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceTag:query', '#', NULL, 'admin', '2025-11-03 14:18:16', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2113, NULL, '资源标签设置新增', 2111, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceTag:add', '#', NULL, 'admin', '2025-11-03 14:18:16', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2114, NULL, '资源标签设置修改', 2111, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceTag:edit', '#', NULL, 'admin', '2025-11-03 14:18:16', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2115, NULL, '资源标签设置删除', 2111, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceTag:remove', '#', NULL, 'admin', '2025-11-03 14:18:16', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2116, NULL, '资源标签设置导出', 2111, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resourceTag:export', '#', NULL, 'admin', '2025-11-03 14:18:16', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2117, NULL, '资源管理', 2003, 2, '/resourceMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-11-04 12:00:34', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2118, NULL, '资源管理', 2117, 1, 'resourceMaintenance', 'resource/resource/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'resource:resource:list', '#', NULL, 'admin', '2025-11-04 12:23:50', '', NULL, '资源管理菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2120, NULL, '资源管理新增', 2118, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resource:add', '#', NULL, 'admin', '2025-11-04 12:23:50', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2121, NULL, '资源管理修改', 2118, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resource:edit', '#', NULL, 'admin', '2025-11-04 12:23:50', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2122, NULL, '资源管理删除', 2118, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resource:remove', '#', NULL, 'admin', '2025-11-04 12:23:50', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2123, NULL, '资源审核', 2117, 2, 'resourceApproval', 'resource/resourceApproval/index', NULL, '', 1, 0, 0, 'C', '0', '1', 'resource:approval:list', '#', NULL, 'admin', '2025-11-08 14:31:15', 'admin', '2025-12-17 11:18:08', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2124, NULL, '资源统计', 2117, 3, 'resourceStatistics', 'resource/statistics/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'resource:statistics:list', '#', NULL, 'admin', '2025-11-08 14:32:53', 'admin', '2025-11-08 17:37:38', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2125, NULL, '审核', 2123, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:approval:approve', '#', NULL, 'admin', '2025-11-08 14:41:48', 'admin', '2025-11-08 14:59:43', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2126, NULL, '导出', 2123, 2, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:approval:export', '#', NULL, 'admin', '2025-11-08 15:01:12', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2127, NULL, '章节信息内容资源', 2012, 1, 'chapterContentResource', 'teaching/chapterContentResource/index', NULL, '', 1, 0, 0, 'C', '1', '1', 'teaching:chapterContentResource:list', '#', NULL, 'admin', '2025-11-08 17:05:25', 'admin', '2025-12-09 16:13:41', '章节信息内容资源菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2128, NULL, '章节信息内容资源列表', 2127, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapterContentResource:query', '#', NULL, 'admin', '2025-11-08 17:05:25', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2129, NULL, '章节信息内容资源新增', 2127, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapterContentResource:add', '#', NULL, 'admin', '2025-11-08 17:05:25', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2130, NULL, '章节信息内容资源修改', 2127, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapterContentResource:edit', '#', NULL, 'admin', '2025-11-08 17:05:25', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2131, NULL, '章节信息内容资源删除', 2127, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapterContentResource:remove', '#', NULL, 'admin', '2025-11-08 17:05:25', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2132, NULL, '章节信息内容资源导出', 2127, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapterContentResource:export', '#', NULL, 'admin', '2025-11-08 17:05:25', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2133, NULL, '导出', 2124, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:statistics:export', '#', NULL, 'admin', '2025-11-08 17:38:09', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2134, NULL, '题库管理', 2170, 1, 'examInfo', 'examine/examInfo/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'examine:examInfo:list', '#', NULL, 'admin', '2025-11-10 10:15:54', 'admin', '2025-12-10 16:27:12', '基础试卷菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2135, NULL, '题库管理列表', 2134, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfo:query', '#', NULL, 'admin', '2025-11-10 10:15:54', 'admin', '2025-12-10 16:27:25', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2136, NULL, '题库管理新增', 2134, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfo:add', '#', NULL, 'admin', '2025-11-10 10:15:54', 'admin', '2025-12-10 16:27:32', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2137, NULL, '题库管理修改', 2134, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfo:edit', '#', NULL, 'admin', '2025-11-10 10:15:54', 'admin', '2025-12-10 16:27:37', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2138, NULL, '题库管理删除', 2134, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfo:remove', '#', NULL, 'admin', '2025-11-10 10:15:54', 'admin', '2025-12-10 16:27:42', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2139, NULL, '题库管理导出', 2134, 6, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfo:export', '#', NULL, 'admin', '2025-11-10 10:15:54', 'admin', '2025-12-10 16:28:58', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2140, NULL, '试卷管理', 2171, 1, 'examInfoQuestion', 'examine/examInfoQuestion/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'examine:examInfoQuestion:list', '#', NULL, 'admin', '2025-11-10 10:16:02', 'admin', '2025-12-10 16:36:44', '试卷问题菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2141, NULL, '试卷管理列表', 2140, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfoQuestion:query', '#', NULL, 'admin', '2025-11-10 10:16:02', 'admin', '2025-12-10 16:37:01', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2142, NULL, '试卷管理新增', 2140, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfoQuestion:add', '#', NULL, 'admin', '2025-11-10 10:16:02', 'admin', '2025-12-10 16:37:12', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2143, NULL, '试卷管理修改', 2140, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfoQuestion:edit', '#', NULL, 'admin', '2025-11-10 10:16:02', 'admin', '2025-12-10 16:37:17', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2144, NULL, '试卷管理删除', 2140, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfoQuestion:remove', '#', NULL, 'admin', '2025-11-10 10:16:02', 'admin', '2025-12-10 16:37:23', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2145, NULL, '试卷管理导出', 2140, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfoQuestion:export', '#', NULL, 'admin', '2025-11-10 10:16:02', 'admin', '2025-12-10 16:37:28', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2146, NULL, '基础题库', 2170, 1, 'examQuestion', 'examine/examQuestion/index', NULL, '', 1, 0, 0, 'C', '1', '1', 'examine:examQuestion:list', '#', NULL, 'admin', '2025-11-10 10:16:10', 'admin', '2025-12-10 16:26:15', '基础题库菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2147, NULL, '基础题库列表', 2146, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examQuestion:query', '#', NULL, 'admin', '2025-11-10 10:16:10', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2148, NULL, '基础题库新增', 2146, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examQuestion:add', '#', NULL, 'admin', '2025-11-10 10:16:10', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2149, NULL, '基础题库修改', 2146, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examQuestion:edit', '#', NULL, 'admin', '2025-11-10 10:16:10', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2150, NULL, '基础题库删除', 2146, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examQuestion:remove', '#', NULL, 'admin', '2025-11-10 10:16:11', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2151, NULL, '基础题库导出', 2146, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examQuestion:export', '#', NULL, 'admin', '2025-11-10 10:16:11', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2152, NULL, '题库问题', 2170, 1, 'examQuestionResult', 'examine/examQuestionResult/index', NULL, '', 1, 0, 0, 'C', '1', '1', 'examine:examQuestionResult:list', '#', NULL, 'admin', '2025-11-10 10:16:17', 'admin', '2025-12-10 16:26:19', '题库问题菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2153, NULL, '题库问题列表', 2152, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examQuestionResult:query', '#', NULL, 'admin', '2025-11-10 10:16:17', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2154, NULL, '题库问题新增', 2152, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examQuestionResult:add', '#', NULL, 'admin', '2025-11-10 10:16:17', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2155, NULL, '题库问题修改', 2152, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examQuestionResult:edit', '#', NULL, 'admin', '2025-11-10 10:16:17', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2156, NULL, '题库问题删除', 2152, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examQuestionResult:remove', '#', NULL, 'admin', '2025-11-10 10:16:18', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2157, NULL, '题库问题导出', 2152, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examQuestionResult:export', '#', NULL, 'admin', '2025-11-10 10:16:18', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2158, NULL, '考试安排', 2171, 1, 'examStudent', 'examine/examStudent/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'examine:examStudent:list', '#', NULL, 'admin', '2025-11-10 10:16:24', 'admin', '2025-12-10 16:38:21', '用户试卷菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2159, NULL, '考试安排列表', 2158, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examStudent:query', '#', NULL, 'admin', '2025-11-10 10:16:24', 'admin', '2025-12-10 16:38:31', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2160, NULL, '考试安排新增', 2158, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examStudent:add', '#', NULL, 'admin', '2025-11-10 10:16:24', 'admin', '2025-12-10 16:38:36', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2161, NULL, '考试安排修改', 2158, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examStudent:edit', '#', NULL, 'admin', '2025-11-10 10:16:24', 'admin', '2025-12-10 16:38:45', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2162, NULL, '考试安排删除', 2158, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examStudent:remove', '#', NULL, 'admin', '2025-11-10 10:16:24', 'admin', '2025-12-10 16:38:50', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2163, NULL, '考试安排导出', 2158, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examStudent:export', '#', NULL, 'admin', '2025-11-10 10:16:25', 'admin', '2025-12-10 16:38:55', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2164, NULL, '用户试卷结果', 2171, 1, 'examStudentResult', 'examine/examStudentResult/index', NULL, '', 1, 0, 0, 'C', '1', '1', 'examine:examStudentResult:list', '#', NULL, 'admin', '2025-11-10 10:16:33', 'admin', '2025-12-10 16:36:05', '用户试卷结果菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2165, NULL, '用户试卷结果列表', 2164, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examStudentResult:query', '#', NULL, 'admin', '2025-11-10 10:16:33', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2166, NULL, '用户试卷结果新增', 2164, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examStudentResult:add', '#', NULL, 'admin', '2025-11-10 10:16:33', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2167, NULL, '用户试卷结果修改', 2164, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examStudentResult:edit', '#', NULL, 'admin', '2025-11-10 10:16:34', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2168, NULL, '用户试卷结果删除', 2164, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examStudentResult:remove', '#', NULL, 'admin', '2025-11-10 10:16:34', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2169, NULL, '用户试卷结果导出', 2164, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examStudentResult:export', '#', NULL, 'admin', '2025-11-10 10:16:34', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2170, NULL, '题库管理', 2004, 1, '/questionMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-11-11 10:23:33', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2171, NULL, '考试管理', 2004, 2, '/examMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-11-11 10:24:04', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2172, NULL, '信息发布', 2005, 1, '/msgPublishMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', '', '#', NULL, 'admin', '2025-11-11 11:13:17', 'admin', '2025-11-11 11:13:52', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2173, NULL, '思政资讯', 2005, 2, '/newsMgr', NULL, NULL, '', 1, 0, 0, 'M', '0', '0', NULL, '#', NULL, 'admin', '2025-11-11 11:13:45', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2175, NULL, '系统消息', 2172, 1, 'message', 'information/message/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'information:message:list', '#', NULL, 'admin', '2025-11-12 16:04:32', 'admin', '2025-11-12 16:42:50', '系统消息菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2176, NULL, '系统消息列表', 2175, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'information:message:query', '#', NULL, 'admin', '2025-11-12 16:04:32', 'admin', '2025-11-12 16:43:11', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2177, NULL, '系统消息新增', 2175, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'information:message:add', '#', NULL, 'admin', '2025-11-12 16:04:32', 'admin', '2025-11-12 16:43:19', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2178, NULL, '系统消息修改', 2175, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'information:message:edit', '#', NULL, 'admin', '2025-11-12 16:04:32', 'admin', '2025-11-12 16:43:28', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2179, NULL, '系统消息删除', 2175, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'information:message:remove', '#', NULL, 'admin', '2025-11-12 16:04:32', 'admin', '2025-11-12 16:43:37', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2180, NULL, '上课安排', 2013, 1, 'classSchedule', 'teaching/classSchedule/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'teaching:classSchedule:list', '#', NULL, 'admin', '2025-11-13 14:39:33', 'admin', '2025-12-09 16:14:06', '上课信息菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2181, NULL, '上课安排列表', 2180, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:classSchedule:query', '#', NULL, 'admin', '2025-11-13 14:39:33', 'admin', '2025-12-09 16:17:06', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2182, NULL, '上课安排新增', 2180, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:classSchedule:add', '#', NULL, 'admin', '2025-11-13 14:39:33', 'admin', '2025-12-09 16:17:13', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2183, NULL, '上课安排修改', 2180, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:classSchedule:edit', '#', NULL, 'admin', '2025-11-13 14:39:33', 'admin', '2025-12-09 16:17:17', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2184, NULL, '上课安排删除', 2180, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:classSchedule:remove', '#', NULL, 'admin', '2025-11-13 14:39:33', 'admin', '2025-12-09 16:17:22', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2185, NULL, '上课安排导出', 2180, 5, '#', '', NULL, '', 1, 0, 0, 'F', '1', '1', 'teaching:classSchedule:export', '#', NULL, 'admin', '2025-11-13 14:39:33', 'admin', '2025-12-10 10:48:25', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2186, NULL, '思政公告', 2172, 2, 'notice', 'information/notice/index', NULL, '', 1, 0, 0, 'C', '1', '1', 'information:notice:list', '#', NULL, 'admin', '2025-11-13 16:33:12', 'admin', '2025-12-10 17:21:35', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2187, NULL, '理论作业', 2014, 1, 'homework', 'teaching/homework/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'teaching:homework:list', '#', NULL, 'admin', '2025-12-01 15:22:07', '', NULL, '理论作业菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2188, NULL, '理论作业列表', 2187, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:homework:query', '#', NULL, 'admin', '2025-12-01 15:22:08', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2189, NULL, '理论作业新增', 2187, 2, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:homework:add', '#', NULL, 'admin', '2025-12-01 15:22:08', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2190, NULL, '理论作业修改', 2187, 3, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:homework:edit', '#', NULL, 'admin', '2025-12-01 15:22:08', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2191, NULL, '理论作业删除', 2187, 4, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:homework:remove', '#', NULL, 'admin', '2025-12-01 15:22:08', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2192, NULL, '理论作业导出', 2187, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:homework:export', '#', NULL, 'admin', '2025-12-01 15:22:08', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2193, NULL, '作业统计', 2014, 3, 'studentHomeWork', 'teaching/studentHomeWork/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'teaching:studentHomeWork:list', '#', NULL, 'admin', '2025-12-01 15:22:27', 'admin', '2025-12-10 10:56:19', '作业统计菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2194, NULL, '作业统计列表', 2193, 1, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:studentHomeWork:query', '#', NULL, 'admin', '2025-12-01 15:22:28', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2195, NULL, '作业统计新增', 2193, 2, '#', '', NULL, '', 1, 0, 0, 'F', '1', '1', 'teaching:studentHomeWork:add', '#', NULL, 'admin', '2025-12-01 15:22:28', 'admin', '2025-12-10 10:57:13', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2196, NULL, '作业统计修改', 2193, 3, '#', '', NULL, '', 1, 0, 0, 'F', '1', '1', 'teaching:studentHomeWork:edit', '#', NULL, 'admin', '2025-12-01 15:22:28', 'admin', '2025-12-10 10:57:18', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2197, NULL, '作业统计删除', 2193, 4, '#', '', NULL, '', 1, 0, 0, 'F', '1', '1', 'teaching:studentHomeWork:remove', '#', NULL, 'admin', '2025-12-01 15:22:28', 'admin', '2025-12-10 10:57:24', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2198, NULL, '作业统计导出', 2193, 5, '#', '', NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:studentHomeWork:export', '#', NULL, 'admin', '2025-12-01 15:22:28', 'admin', '2025-12-10 10:57:33', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2199, NULL, '系统备份', 2056, 1, 'backup', 'setting/backup/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'setting:backup:list', '#', NULL, 'admin', '2025-12-02 16:32:32', '', NULL, '系统备份菜单'); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2200, NULL, 'AI聊天', 2007, 2, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', NULL, '#', NULL, 'admin', '2025-12-05 15:15:09', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2201, NULL, '授课进度', 2013, 2, 'teaching-progress', 'teaching-progress', NULL, '', 1, 0, 0, 'C', '0', '0', 'teaching:progress:list', '#', NULL, 'admin', '2025-12-09 16:14:45', 'admin', '2025-12-10 10:50:39', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2202, NULL, '课程统计', 2013, 3, 'course-statistics', 'course-statistics', NULL, '', 1, 0, 0, 'C', '0', '0', 'teaching:coursestatistics:list', '#', NULL, 'admin', '2025-12-09 16:15:12', 'admin', '2025-12-10 10:52:44', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2203, NULL, '课程统计导出', 2202, 2, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:coursestatistics:export', '#', NULL, 'admin', '2025-12-09 16:16:06', 'admin', '2025-12-10 10:58:27', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2204, NULL, '学生管理', 2010, 0, 'studentManage', 'system/student/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'setting:studmgr:list', '#', NULL, 'admin', '2025-12-09 16:44:22', 'admin', '2025-12-09 17:23:35', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2205, NULL, '学生管理列表', 2204, 0, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:studmgr:query', '#', NULL, 'admin', '2025-12-09 16:45:02', 'admin', '2025-12-09 16:48:00', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2206, NULL, '学生管理增加', 2204, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:studmgr:add', '#', NULL, 'admin', '2025-12-09 16:45:44', 'admin', '2025-12-09 16:48:07', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2207, NULL, '学生管理修改', 2204, 2, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:studmgr:edit', '#', NULL, 'admin', '2025-12-09 16:46:02', 'admin', '2025-12-09 16:48:14', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2208, NULL, '学生管理删除', 2204, 3, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:studmgr:remove', '#', NULL, 'admin', '2025-12-09 16:46:17', 'admin', '2025-12-09 16:48:29', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2209, NULL, '学生管理导入', 2204, 4, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:studmgr:import', '#', NULL, 'admin', '2025-12-09 16:46:33', 'admin', '2025-12-09 16:48:37', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2210, NULL, '学生管理导出', 2204, 5, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:studmgr:export', '#', NULL, 'admin', '2025-12-09 16:46:44', 'admin', '2025-12-09 16:48:51', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2211, NULL, '学生管理批量重置密码', 2204, 6, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'setting:studmgr:batresetpwd', '#', NULL, 'admin', '2025-12-09 16:47:17', 'admin', '2025-12-09 16:49:14', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2212, NULL, '教师管理导入', 2015, 6, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'system:teacher:import', '#', NULL, 'admin', '2025-12-09 16:51:39', 'admin', '2025-12-09 16:52:04', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2214, NULL, '教师管理批量重置密码', 2015, 7, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'system:teacher:batresetpwd', '#', NULL, 'admin', '2025-12-09 16:54:10', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2215, NULL, '科目章节增加章节', 2021, 10, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapter:add', '#', NULL, 'admin', '2025-12-10 10:40:00', 'admin', '2025-12-10 10:41:50', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2216, NULL, '科目章节修改章节', 2021, 11, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapter:edit', '#', NULL, 'admin', '2025-12-10 10:41:15', 'admin', '2025-12-10 10:42:00', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2217, NULL, '科目章节删除章节', 2021, 12, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:chapter:remove', '#', NULL, 'admin', '2025-12-10 10:43:02', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2218, NULL, '课程审核批量审核', 2033, 2, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:review:batchreview', '#', NULL, 'admin', '2025-12-10 10:46:05', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2219, NULL, '上课安排编辑课程内容', 2180, 6, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:classSchedule:editchapter', '#', NULL, 'admin', '2025-12-10 10:49:15', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2220, NULL, '授课进度列表', 2201, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:progress:query', '#', NULL, 'admin', '2025-12-10 10:51:10', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2222, NULL, '实践作业', 2014, 2, 'practicework', '/teaching/practicework/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'teaching:practicework:list', '#', NULL, 'admin', '2025-12-10 10:56:05', 'admin', '2025-12-16 17:27:35', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2223, NULL, '课程统计列表', 2202, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:coursestatistics:query', '#', NULL, 'admin', '2025-12-10 10:58:47', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2224, NULL, '资源管理列表', 2118, 0, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:resource:query', '#', NULL, 'admin', '2025-12-10 16:17:12', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2225, NULL, '资源审核列表', 2123, 0, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:approval:query', '#', NULL, 'admin', '2025-12-10 16:17:43', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2226, NULL, '资源统计列表', 2124, 0, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'resource:statistics:query', '#', NULL, 'admin', '2025-12-10 16:18:13', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2227, NULL, '题库管理导入', 2134, 5, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examInfo:import', '#', NULL, 'admin', '2025-12-10 16:28:51', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2228, NULL, 'AI出题', 2170, 2, 'AiQuesion', 'examine/AiQuesion/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'examine:aiquesion:list', '#', NULL, 'admin', '2025-12-10 16:30:27', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2229, NULL, 'AI出题主界面', 2228, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:aiquesion:query', '#', NULL, 'admin', '2025-12-10 16:31:01', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2230, NULL, '题库分析', 2170, 3, 'questionAnalysis', 'examine/questionAnalysis/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'examine:questionAnalysis:list', '#', NULL, 'admin', '2025-12-10 16:32:05', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2231, NULL, '题库分析列表', 2230, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:questionAnalysis:query', '#', NULL, 'admin', '2025-12-10 16:32:30', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2232, NULL, '考试监控', 2171, 4, 'examMonitoring', 'examine/examMonitoring/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'examine:examMonitoring:list', '#', NULL, 'admin', '2025-12-10 16:41:32', 'admin', '2025-12-10 16:46:24', ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2233, NULL, '考试监控列表', 2232, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examMonitoring:query', '#', NULL, 'admin', '2025-12-10 16:42:11', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2234, NULL, '考试监控导出', 2232, 2, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:examMonitoring:export', '#', NULL, 'admin', '2025-12-10 16:42:54', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2235, NULL, '成绩列表', 2171, 5, 'scoreQuery', 'examine/scoreQuery/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'examine:scoreQuery:list', '#', NULL, 'admin', '2025-12-10 16:46:06', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2236, NULL, '成绩查询列表', 2235, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:scoreQuery:query', '#', NULL, 'admin', '2025-12-10 16:47:24', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2237, NULL, '成绩查询导出', 2235, 2, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:scoreQuery:export', '#', NULL, 'admin', '2025-12-10 16:48:52', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2238, NULL, '试卷分析', 2171, 6, 'testPaperAnalysis', 'examine/testPaperAnalysis/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'examine:testPaperAnalysis:list', '#', NULL, 'admin', '2025-12-10 16:50:03', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2239, NULL, '试卷分析列表', 2238, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'examine:testPaperAnalysis:query', '#', NULL, 'admin', '2025-12-10 16:50:42', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2240, NULL, '思政热点发布', 2173, 1, 'hotnewsPublish', 'information/hotnewsPublish/index', NULL, '', 1, 0, 0, 'C', '0', '0', 'information:hotnewspublish:list', '#', NULL, 'admin', '2025-12-10 17:24:10', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2241, NULL, '思政热点发布列表', 2240, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'information:hotnewspublish:query', '#', NULL, 'admin', '2025-12-10 17:24:49', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2242, NULL, '思政热点发布增加', 2240, 2, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'information:hotnewspublish:add', '#', NULL, 'admin', '2025-12-10 17:25:13', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2243, NULL, '思政热点发布修改', 2240, 3, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'information:hotnewspublish:edit', '#', NULL, 'admin', '2025-12-10 17:25:46', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2244, NULL, '思政热点发布删除', 2240, 4, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'information:hotnewspublish:remove', '#', NULL, 'admin', '2025-12-10 17:26:11', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2245, NULL, '思政热点发布导出', 2240, 5, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'information:hotnewspublish:export', '#', NULL, 'admin', '2025-12-10 17:41:33', '', NULL, ''); INSERT INTO `sys_menu` (`menu_id`, `sch_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query`, `route_name`, `is_frame`, `is_sys`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `module`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2246, NULL, '实践作业列表', 2222, 1, '', NULL, NULL, '', 1, 0, 0, 'F', '0', '0', 'teaching:practicework:query', '#', NULL, 'admin', '2025-12-16 17:28:24', 'admin', '2025-12-16 17:28:40', ''); COMMIT; -- ---------------------------- -- 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) NOT NULL COMMENT '公告标题', `notice_type` char(1) NOT NULL COMMENT '公告类型(1通知 2公告)', `notice_content` longblob COMMENT '公告内容', `status` char(1) DEFAULT '0' COMMENT '公告状态(0正常 1关闭)', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(255) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`notice_id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='通知公告表'; -- ---------------------------- -- Records of sys_notice -- ---------------------------- BEGIN; INSERT INTO `sys_notice` (`notice_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '温馨提醒:2018-07-01 若依新版本发布啦', '2', 0xE696B0E78988E69CACE58685E5AEB9, '0', 'admin', '2025-10-21 09:30:44', '', NULL, '管理员'); INSERT INTO `sys_notice` (`notice_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '维护通知:2018-07-01 若依系统凌晨维护', '1', 0xE7BBB4E68AA4E58685E5AEB9, '0', 'admin', '2025-10-21 09:30:44', '', NULL, '管理员'); COMMIT; -- ---------------------------- -- Table structure for sys_oper_log -- ---------------------------- DROP TABLE IF EXISTS `sys_oper_log`; CREATE TABLE `sys_oper_log` ( `oper_id` bigint NOT NULL AUTO_INCREMENT COMMENT '日志主键', `sch_id` bigint DEFAULT NULL, `title` varchar(50) DEFAULT '' COMMENT '模块标题', `business_type` int DEFAULT '0' COMMENT '业务类型(0其它 1新增 2修改 3删除)', `method` varchar(200) DEFAULT '' COMMENT '方法名称', `request_method` varchar(10) DEFAULT '' COMMENT '请求方式', `operator_type` int DEFAULT '0' COMMENT '操作类别(0其它 1后台用户 2手机端用户)', `oper_name` varchar(50) DEFAULT '' COMMENT '操作人员', `dept_name` varchar(50) DEFAULT '' COMMENT '部门名称', `oper_url` varchar(255) DEFAULT '' COMMENT '请求URL', `oper_ip` varchar(128) DEFAULT '' COMMENT '主机地址', `oper_location` varchar(255) DEFAULT '' COMMENT '操作地点', `oper_param` varchar(2000) DEFAULT '' COMMENT '请求参数', `json_result` varchar(2000) DEFAULT '' COMMENT '返回参数', `status` int DEFAULT '0' COMMENT '操作状态(0正常 1异常)', `error_msg` varchar(2000) DEFAULT '' COMMENT '错误消息', `oper_time` datetime DEFAULT NULL COMMENT '操作时间', `cost_time` bigint DEFAULT '0' COMMENT '消耗时间', PRIMARY KEY (`oper_id`), KEY `idx_sys_oper_log_bt` (`business_type`), KEY `idx_sys_oper_log_s` (`status`), KEY `idx_sys_oper_log_ot` (`oper_time`) ) ENGINE=InnoDB AUTO_INCREMENT=2275 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='操作日志记录'; -- ---------------------------- -- Records of sys_oper_log -- ---------------------------- BEGIN; INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/10/31/微信图片_20241217162528_20251031105957A002.png\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/10/31/u3475_20251031105850A001.png\",\"contactAddress\":\"\",\"contactEmail\":\"aaa@aa.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

系统版权信息12122222

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"系统SEO搜索关键词\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/10/27/app_20251027145724A010.png\",\"systemName\":\"中硕思政12\",\"updateTime\":\"2025-10-31 22:04:08\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/10/27/app_20251027145815A014.png\",\"welcomeHint\":\"系统欢迎词提示语111\",\"welcomeMessage\":\"同志们好\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-10-31 22:04:09', 168); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,8,1,8,1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-29 10:48:38\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/10/29/logo1_20251029104802A005.png\",\"mail\":\"aab@aa.com\",\"manager\":\"王二小\",\"mgrGender\":\"0\",\"mgrPhone\":\"15333333333\",\"params\":{},\"schoolId\":8,\"schoolName\":\"xx大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-10-31 22:04:19\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-10-31 22:04:19', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (3, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"11\",\"appIconPath\":\"/statics/2025/10/31/logo2_20251031220447A001.png\",\"appId\":7,\"appName\":\"教学分析\",\"appPath\":\"/teachAnalysisSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"7\",\"updateBy\":\"admin\",\"updateTime\":\"2025-10-31 22:04:54\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-10-31 22:04:54', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (4, 1, '学年学期设置', 2, 'com.study.system.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"id\":7,\"isCurrent\":1,\"isDel\":0,\"isSemester\":0,\"name\":\"222\",\"params\":{},\"schoolId\":1,\"state\":0,\"updateTime\":\"2025-10-31 22:48:45\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-10-31 22:48:46', 159); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (5, 1, '学年学期设置', 1, 'com.study.system.controller.BaseAcademicController.add()', 'POST', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-10-31 22:49:01\",\"endDate\":\"2025-10-31\",\"id\":21,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":6,\"schoolId\":1,\"startDate\":\"2025-10-01\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-10-31 22:49:01', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (6, 1, '学年学期设置', 3, 'com.study.system.controller.BaseAcademicController.remove()', 'DELETE', 1, 'admin', NULL, '/academic/21', '127.0.0.1', '', '[21]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-10-31 22:49:04', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (7, 1, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-01 10:16:36\",\"endDate\":\"2025-11-28\",\"id\":22,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":6,\"schoolId\":1,\"startDate\":\"2025-10-29\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:16:36', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (8, 1, '学年学期设置', 3, 'com.study.setting.controller.BaseAcademicController.remove()', 'DELETE', 1, 'admin', NULL, '/academic/22', '127.0.0.1', '', '[22]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:16:41', 58); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (9, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/11/01/ai_20251101101442A001.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/11/01/app_20251101101647A003.png\",\"contactAddress\":\"\",\"contactEmail\":\"aaa@aa.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

© 2023 中硕科技(陕西)集团有限公司 版权所有 | 备案号:陕ICP备20007350号-1

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"系统SEO搜索关键词\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/logo1_20251101101459A002.png\",\"systemName\":\"中硕思政12\",\"updateTime\":\"2025-11-01 10:16:51\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/10/27/app_20251027145815A014.png\",\"welcomeHint\":\"系统欢迎词提示语111\",\"welcomeMessage\":\"同志们好\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:16:53', 731); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (10, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/11/01/ai_20251101101442A001.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/11/01/app_20251101101647A003.png\",\"contactAddress\":\"\",\"contactEmail\":\"aaa@aa.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

© 2023 中硕科技(陕西)集团有限公司 版权所有 | 备案号:陕ICP备20007350号-1

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"系统SEO搜索关键词\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/logo1_20251101101459A002.png\",\"systemName\":\"中硕思政12\",\"updateTime\":\"2025-11-01 10:17:13\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/11/01/wechartQr_20251101101711A004.png\",\"welcomeHint\":\"系统欢迎词提示语111\",\"welcomeMessage\":\"同志们好\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:17:14', 67); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (11, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"organization\",\"className\":\"BaseOrganization\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1043,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-10-24 15:52:22\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":72,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchoolId\",\"columnComment\":\"学校ID\",\"columnId\":1044,\"columnName\":\"school_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-10-24 15:52:22\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schoolId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":72,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"OrgName\",\"columnComment\":\"组织名称\",\"columnId\":1045,\"columnName\":\"org_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-10-24 15:52:22\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"orgName\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":72,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"OrgPid\",\"columnComment\":\"父级ID\",\"columnId\":1046,\"columnName\":\"org_pid\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-10-24 15:52:22\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"orgPid\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"qu', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:17:33', 1243); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (12, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"管理系统用户信息、权限分配及角色管理的核心应用1\",\"appIconPath\":\"/statics/2025/10/29/7_20251029102422A001.png\",\"appId\":1,\"appName\":\"用户系统\",\"appPath\":\"/userSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 10:17:36\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:17:36', 75); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (13, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_organization\"}', NULL, 0, NULL, '2025-11-01 10:17:37', 160); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (14, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appId\":2,\"appName\":\"思政教学系统\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":0,\"params\":{},\"remark\":\"2\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 10:17:44\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:17:45', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (15, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appId\":2,\"appName\":\"思政教学系统\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":1,\"params\":{},\"remark\":\"2\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 10:17:47\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:17:47', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (16, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"管理教师、学生信息,权限分配与账号安全\",\"appIconPath\":\"/statics/2025/10/29/7_20251029102422A001.png\",\"appId\":1,\"appName\":\"用户系统\",\"appPath\":\"/userSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 10:18:39\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:18:39', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (17, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"教学设计、课堂管理、教学评估一体化平台\",\"appIconPath\":\"/statics/2025/11/01/logo3_20251101101913A005.png\",\"appId\":2,\"appName\":\"思政教学系统\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":1,\"params\":{},\"remark\":\"2\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 10:19:14\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:19:15', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (18, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"海量教学资料、案例、课件,满足多样化教学需求\",\"appIconPath\":\"/statics/2025/11/01/logo4_20251101101932A006.png\",\"appId\":3,\"appName\":\"教学资源库\",\"appPath\":\"/resourceSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"3\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 10:19:33\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:19:34', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (19, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"题库管理、考试安排、智能评分、成绩分析的综合测评系统\",\"appIconPath\":\"/statics/2025/11/01/logo4_20251101101954A007.png\",\"appId\":4,\"appName\":\"考试系统\",\"appPath\":\"/examSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"4\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 10:19:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:19:56', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (20, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"系统消息、通知公告、校园邮箱等及时推送\",\"appIconPath\":\"/statics/2025/11/01/logo3_20251101102013A008.png\",\"appId\":5,\"appName\":\"信息系统\",\"appPath\":\"/infoSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"5\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 10:20:14\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:20:15', 58); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (21, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/10/28/app_20251028112106A002.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":0,\"params\":{},\"remark\":\"6\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 10:20:37\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:20:37', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (22, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"多维度数据分析,助力教学改进与决策支持\",\"appIconPath\":\"/statics/2025/10/31/logo2_20251031220447A001.png\",\"appId\":7,\"appName\":\"教学分析\",\"appPath\":\"/teachAnalysisSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"7\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 10:20:52\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 10:20:53', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (23, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 10:29:49', 1027); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (24, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 1, 'JDBC rollback; Communications link failure during rollback(). Transaction resolution unknown.; nested exception is java.sql.SQLNonTransientConnectionException: Communications link failure during rollback(). Transaction resolution unknown.', '2025-11-01 10:49:53', 857664); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (25, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 10:51:58', 3353); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (26, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 10:54:09', 4350); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (27, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:03:24', 4374); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (28, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:17:45', 7943); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (29, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:22:30', 4194); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (30, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:25:00', 4439); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (31, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:28:30', 612); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (32, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:30:57', 629); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (33, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:31:41', 385); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (34, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:31:45', 413); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (35, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:31:49', 424); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (36, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:31:53', 385); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (37, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:36:47', 576); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (38, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:37:02', 434); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (39, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:37:08', 402); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (40, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysRoleMapper.xml]\r\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_role set del_flag = \'2\' where role_id in\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 \'\' 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 \'\' at line 1', '2025-11-01 11:37:12', 419); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (41, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/8', '127.0.0.1', '', '8', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 11:40:17', 422); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (42, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 11:41:19\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/01/logo3_20251101114031A009.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"张三丰\",\"mgrGender\":\"0\",\"mgrPhone\":\"13122222222\",\"params\":{},\"schoolId\":10,\"schoolName\":\"重庆文理学院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 11:41:19\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 11:41:20', 682); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (43, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,8,1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 11:41:19\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/01/logo3_20251101114031A009.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"张三丰\",\"mgrGender\":\"0\",\"mgrPhone\":\"13122222222\",\"params\":{},\"schoolId\":10,\"schoolName\":\"重庆文理学院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 11:41:34\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 11:41:35', 81); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (44, 10, '角色管理', 1, 'com.study.system.controller.SysRoleController.add()', 'POST', 1, '张三丰', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"createBy\":\"张三丰\",\"deptCheckStrictly\":false,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":119,\"roleKey\":\"ccc\",\"roleName\":\"ccc\",\"roleSort\":0,\"roleType\":1,\"schoolId\":10,\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 11:59:19', 231); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (45, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"教学设计、课堂管理、教学评估一体化平台\",\"appIconPath\":\"/statics/2025/11/01/logo3_20251101101913A005.png\",\"appId\":2,\"appName\":\"思政教学系统\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":0,\"params\":{},\"remark\":\"2\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 13:56:37\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 13:56:38', 978); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (46, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"教学设计、课堂管理、教学评估一体化平台\",\"appIconPath\":\"/statics/2025/11/01/logo3_20251101101913A005.png\",\"appId\":2,\"appName\":\"思政教学系统\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":1,\"params\":{},\"remark\":\"2\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 13:56:40\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 13:56:40', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (47, 1, '系统日志', 2, 'com.study.setting.controller.BaseSysLogController.edit()', 'PUT', 1, 'admin', NULL, '/syslog', '127.0.0.1', '', '{\"content\":\"请求地址\'/school/8\',发生未知异常\'\\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 \'\' at line 1\\r\\n### The error may exist in file [D:\\\\ws\\\\school-mgr\\\\StudyCloud\\\\study-common\\\\study-common-mapper\\\\target\\\\classes\\\\mapper\\\\system\\\\SysRoleMapper.xml]\\r\\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\\r\\n### The error o...\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 11:37:13\",\"errorStack\":\"org.springframework.jdbc.BadSqlGrammarException: \\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 \'\' at line 1\\r\\n### The error may exist in file [D:\\\\ws\\\\school-mgr\\\\StudyCloud\\\\study-common\\\\study-common-mapper\\\\target\\\\classes\\\\mapper\\\\system\\\\SysRoleMapper.xml]\\r\\n### The error may involve com.study.system.mapper.SysRoleMapper.deleteRoleByIds-Inline\\r\\n### The error occurred while setting parameters\\r\\n### SQL: update sys_role set del_flag = \'2\' where role_id in\\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 \'\' 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 \'\' at line 1\\r\\n\\tat org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:236)\\r\\n\\tat org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\\r\\n\\tat org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyB', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 14:08:57', 328); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (48, 10, '系统日志', 5, 'com.study.setting.controller.BaseSysLogController.export()', 'POST', 1, '张三丰', NULL, '/syslog/export', '127.0.0.1', '', '{\"schId\":\"10\"}', NULL, 0, NULL, '2025-11-01 14:31:36', 2491); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (49, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/11/01/ai_20251101101442A001.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/11/01/app_20251101101647A003.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

© 2023 中硕科技(陕西)集团有限公司 版权所有 | 备案号:陕ICP备20007350号-1

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"系统SEO搜索关键词\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/logo1_20251101101459A002.png\",\"systemName\":\"中硕思政12\",\"updateTime\":\"2025-11-01 14:49:56\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/11/01/wechartQr_20251101101711A004.png\",\"welcomeHint\":\"系统欢迎词提示语111\",\"welcomeMessage\":\"同志们好\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 14:49:56', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (50, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"\",\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"\",\"contactEmail\":\"\",\"contactPhone\":\"\",\"copyright\":\"


\",\"params\":{},\"portalUrl\":\"\",\"seoKeyWords\":\"\",\"settingId\":1,\"sysLogoPath\":\"\",\"systemName\":\"\",\"updateTime\":\"2025-11-01 15:07:01\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"\",\"welcomeHint\":\"1\",\"welcomeMessage\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:07:01', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (51, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"\",\"contactEmail\":\"\",\"contactPhone\":\"\",\"copyright\":\"


\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"\",\"seoKeyWords\":\"\",\"settingId\":1,\"sysLogoPath\":\"\",\"systemName\":\"\",\"updateTime\":\"2025-11-01 15:07:20\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"\",\"welcomeHint\":\"1\",\"welcomeMessage\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:07:20', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (52, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

© 2023 中硕科技(陕西)集团有限公司 版权所有 | 备案号:陕ICP备20007350号-1

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"系统SEO搜索关键词\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/logo1_20251101150925A001.png\",\"systemName\":\"中硕思政\",\"updateTime\":\"2025-11-01 15:11:34\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"欢迎使用\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:11:34', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (53, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/10', '127.0.0.1', '', '10', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:16:55', 626); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (54, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:14\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/10/28/360截图20250925165458_20251028185940A007.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"石大鹏\",\"mgrGender\":\"1\",\"mgrPhone\":\"13811111111\",\"params\":{},\"schoolId\":2,\"schoolName\":\"陕西研筑大学\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:24:03\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:24:03', 99); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (55, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:14\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/10/28/360截图20250925165458_20251028185940A007.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"石大鹏\",\"mgrGender\":\"1\",\"mgrPhone\":\"13811111111\",\"params\":{},\"schoolId\":2,\"schoolName\":\"陕西研筑大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:24:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:24:10', 67); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (56, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

© 2023 中硕科技(陕西)集团有限公司 版权所有 | 备案号:陕ICP备20007350号-1

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"系统SEO搜索关键词\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/logo1_20251101150925A001.png\",\"systemName\":\"中硕思政\",\"updateTime\":\"2025-11-01 15:31:27\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"欢迎使用\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:31:28', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (57, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"管理教师、学生信息,权限分配与账号安全\",\"appIconPath\":\"/statics/2025/10/29/7_20251029102422A001.png\",\"appId\":1,\"appName\":\"用户系统\",\"appPath\":\"/userSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:32:57\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:32:57', 78); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (58, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"管理教师、学生信息,权限分配与账号安全\",\"appIconPath\":\"/statics/2025/10/29/7_20251029102422A001.png\",\"appId\":1,\"appName\":\"用户系统\",\"appPath\":\"/userSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:33:12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:33:12', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (59, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"教学设计、课堂管理、教学评估一体化平台\",\"appIconPath\":\"/statics/2025/11/01/logo3_20251101101913A005.png\",\"appId\":2,\"appName\":\"思政教学系统\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":0,\"params\":{},\"remark\":\"2\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:35:02\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:35:02', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (60, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"教学设计、课堂管理、教学评估一体化平台\",\"appIconPath\":\"/statics/2025/11/01/logo3_20251101101913A005.png\",\"appId\":2,\"appName\":\"思政教学系统\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":1,\"params\":{},\"remark\":\"2\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:35:03\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:35:03', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (61, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"多维度数据分析,助力教学改进与决策支持\",\"appIconPath\":\"/statics/2025/11/01/logo3_20251101153529A003.png\",\"appId\":7,\"appName\":\"教学分析\",\"appPath\":\"/teachAnalysisSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"7\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:35:30\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:35:30', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (62, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"管理教师、学生信息,权限分配与账号安全\",\"appIconPath\":\"/statics/2025/11/01/logo1_20251101153539A004.png\",\"appId\":1,\"appName\":\"用户系统\",\"appPath\":\"/userSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:35:41\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:35:41', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (63, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/10/28/app_20251028112106A002.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"6\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:35:45\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:35:45', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (64, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/10/28/app_20251028112106A002.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":0,\"params\":{},\"remark\":\"6\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:35:46\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:35:46', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (65, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/10/28/app_20251028112106A002.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"6\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:35:50\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:35:50', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (66, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/10/28/app_20251028112106A002.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":0,\"params\":{},\"remark\":\"6\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:36:08\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:36:08', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (67, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/10/28/app_20251028112106A002.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"6\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:37:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:37:00', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (68, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/10/28/app_20251028112106A002.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":0,\"params\":{},\"remark\":\"6\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:37:05\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:37:05', 66); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (69, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/10/28/app_20251028112106A002.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"6\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:37:12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:37:12', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (70, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:14\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/10/28/360截图20250925165458_20251028185940A007.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"石大鹏\",\"mgrGender\":\"1\",\"mgrPhone\":\"13811111111\",\"params\":{},\"schoolId\":2,\"schoolName\":\"陕西研筑大学\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:37:24\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:37:24', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (71, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:14\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/10/28/360截图20250925165458_20251028185940A007.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"石大鹏\",\"mgrGender\":\"1\",\"mgrPhone\":\"13811111111\",\"params\":{},\"schoolId\":2,\"schoolName\":\"陕西研筑大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:37:26\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:37:26', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (72, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 15:37:49\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/01/logo1_20251101153741A005.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"张三丰\",\"mgrGender\":\"0\",\"mgrPhone\":\"13122222222\",\"params\":{},\"schoolId\":11,\"schoolName\":\"重庆文理学院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:37:49\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:37:50', 592); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (73, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 15:37:50\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/01/logo1_20251101153741A005.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"张三丰\",\"mgrGender\":\"0\",\"mgrPhone\":\"13122222222\",\"params\":{},\"schoolId\":11,\"schoolName\":\"重庆文理学院\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:38:57\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:38:57', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (74, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 15:37:50\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/01/logo1_20251101153741A005.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"张三丰\",\"mgrGender\":\"0\",\"mgrPhone\":\"13122222222\",\"params\":{},\"schoolId\":11,\"schoolName\":\"重庆文理学院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:39:57\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:39:57', 81); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (75, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 15:37:50\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/01/logo1_20251101153741A005.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"张三丰\",\"mgrGender\":\"0\",\"mgrPhone\":\"13122222222\",\"params\":{},\"schoolId\":11,\"schoolName\":\"重庆文理学院\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:39:59\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:39:59', 66); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (76, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 15:37:50\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/01/logo1_20251101153741A005.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"张三丰\",\"mgrGender\":\"0\",\"mgrPhone\":\"13122222222\",\"params\":{},\"schoolId\":11,\"schoolName\":\"重庆文理学院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:40:01\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:40:01', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (77, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 15:37:50\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/01/logo1_20251101153741A005.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"张三丰\",\"mgrGender\":\"0\",\"mgrPhone\":\"13122222222\",\"params\":{},\"schoolId\":11,\"schoolName\":\"重庆文理学院\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 15:40:02\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 15:40:02', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (78, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"deptName\":\"000\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgDesc\":\"\",\"params\":{},\"parentId\":0,\"startYear\":\"\"}', NULL, 1, 'java.lang.NullPointerException\n at com.study.system.service.impl.SysDeptServiceImpl.insertDept(SysDeptServiceImpl.java:236)\n at com.study.system.service.impl.SysDeptServiceImpl$$FastClassBySpringCGLIB$$a4bab62b.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysDeptServiceImpl$$EnhancerBySpringCGLIB$$d0209e0d.insertDept()\n at com.study.system.controller.SysDeptController.add(SysDeptController.java:86)\n at com.study.system.controller.SysDeptController$$FastClassBySpringCGLIB$$5b31db89.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at ', '2025-11-01 16:03:40', 77); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (79, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"deptName\":\"000\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgDesc\":\"\",\"params\":{},\"parentId\":0,\"startYear\":\"\"}', NULL, 1, 'java.lang.NullPointerException\n at com.study.system.service.impl.SysDeptServiceImpl.insertDept(SysDeptServiceImpl.java:236)\n at com.study.system.service.impl.SysDeptServiceImpl$$FastClassBySpringCGLIB$$a4bab62b.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysDeptServiceImpl$$EnhancerBySpringCGLIB$$d0209e0d.insertDept()\n at com.study.system.controller.SysDeptController.add(SysDeptController.java:86)\n at com.study.system.controller.SysDeptController$$FastClassBySpringCGLIB$$5b31db89.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at ', '2025-11-01 16:03:57', 53); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (80, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"deptName\":\"000\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgDesc\":\"\",\"params\":{},\"parentId\":0,\"startYear\":\"\"}', NULL, 1, 'java.lang.NullPointerException\n at com.study.system.service.impl.SysDeptServiceImpl.insertDept(SysDeptServiceImpl.java:236)\n at com.study.system.service.impl.SysDeptServiceImpl$$FastClassBySpringCGLIB$$a4bab62b.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysDeptServiceImpl$$EnhancerBySpringCGLIB$$d0209e0d.insertDept()\n at com.study.system.controller.SysDeptController.add(SysDeptController.java:86)\n at com.study.system.controller.SysDeptController$$FastClassBySpringCGLIB$$5b31db89.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at ', '2025-11-01 16:03:57', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (81, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"deptName\":\"0002\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"0002\",\"orgDesc\":\"002\",\"params\":{},\"parentId\":0,\"startYear\":\"\"}', NULL, 1, 'java.lang.NullPointerException\n at com.study.system.service.impl.SysDeptServiceImpl.insertDept(SysDeptServiceImpl.java:236)\n at com.study.system.service.impl.SysDeptServiceImpl$$FastClassBySpringCGLIB$$a4bab62b.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysDeptServiceImpl$$EnhancerBySpringCGLIB$$d0209e0d.insertDept()\n at com.study.system.controller.SysDeptController.add(SysDeptController.java:86)\n at com.study.system.controller.SysDeptController$$FastClassBySpringCGLIB$$5b31db89.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at ', '2025-11-01 16:06:01', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (82, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"deptName\":\"0002\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"0002\",\"orgDesc\":\"002\",\"params\":{},\"parentId\":0,\"startYear\":\"\"}', NULL, 1, 'java.lang.NullPointerException\n at com.study.system.service.impl.SysDeptServiceImpl.insertDept(SysDeptServiceImpl.java:236)\n at com.study.system.service.impl.SysDeptServiceImpl$$FastClassBySpringCGLIB$$a4bab62b.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysDeptServiceImpl$$EnhancerBySpringCGLIB$$d0209e0d.insertDept()\n at com.study.system.controller.SysDeptController.add(SysDeptController.java:86)\n at com.study.system.controller.SysDeptController$$FastClassBySpringCGLIB$$5b31db89.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at ', '2025-11-01 16:06:01', 187); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (83, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"deptName\":\"0002\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"0002\",\"orgDesc\":\"\",\"params\":{},\"parentId\":0,\"startYear\":\"\",\"status\":\"1\"}', NULL, 1, 'java.lang.NullPointerException\n at com.study.system.service.impl.SysDeptServiceImpl.insertDept(SysDeptServiceImpl.java:236)\n at com.study.system.service.impl.SysDeptServiceImpl$$FastClassBySpringCGLIB$$a4bab62b.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysDeptServiceImpl$$EnhancerBySpringCGLIB$$d0209e0d.insertDept()\n at com.study.system.controller.SysDeptController.add(SysDeptController.java:86)\n at com.study.system.controller.SysDeptController$$FastClassBySpringCGLIB$$5b31db89.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at ', '2025-11-01 16:07:37', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (84, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"deptName\":\"0002\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"0002\",\"orgDesc\":\"\",\"params\":{},\"parentId\":0,\"startYear\":\"\",\"status\":\"1\"}', NULL, 1, 'java.lang.NullPointerException\n at com.study.system.service.impl.SysDeptServiceImpl.insertDept(SysDeptServiceImpl.java:236)\n at com.study.system.service.impl.SysDeptServiceImpl$$FastClassBySpringCGLIB$$a4bab62b.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysDeptServiceImpl$$EnhancerBySpringCGLIB$$d0209e0d.insertDept()\n at com.study.system.controller.SysDeptController.add(SysDeptController.java:86)\n at com.study.system.controller.SysDeptController$$FastClassBySpringCGLIB$$5b31db89.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\n at ', '2025-11-01 16:07:37', 78); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (85, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"002\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"002\",\"orgDesc\":\"\",\"params\":{},\"parentId\":0,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:13:02', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (86, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"002\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"002\",\"orgDesc\":\"\",\"params\":{},\"parentId\":0,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:13:02', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (87, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,206\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"003\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"003\",\"orgDesc\":\"\",\"params\":{},\"parentId\":206,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:13:19', 129); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (88, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,206\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"003\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"003\",\"orgDesc\":\"\",\"params\":{},\"parentId\":206,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:13:19', 133); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (89, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"002\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"002\",\"orgDesc\":\"002\",\"params\":{},\"parentId\":0,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:21:12', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (90, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,209\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"201\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"291\",\"orgDesc\":\"\",\"params\":{},\"parentId\":209,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:21:27', 127); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (91, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,209,210\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"203\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"203\",\"orgDesc\":\"\",\"params\":{},\"parentId\":210,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:21:36', 127); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (92, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,209,210,211\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"204\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"204\",\"orgDesc\":\"\",\"params\":{},\"parentId\":211,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:21:46', 133); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (93, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"200\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"200\",\"orgDesc\":\"200\",\"orgLevel\":1,\"params\":{},\"parentId\":0,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:24:47', 104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (94, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,213\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"201\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"201\",\"orgDesc\":\"201\",\"orgLevel\":2,\"params\":{},\"parentId\":213,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:24:57', 127); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (95, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,213,214\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"202\",\"endYear\":\"\",\"enterYear\":\"2023\",\"orderNum\":0,\"orgCode\":\"202\",\"orgDesc\":\"2023\",\"orgLevel\":3,\"params\":{},\"parentId\":214,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:25:23', 121); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (96, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,213,214,215\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"205\",\"endYear\":\"2024\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"205\",\"orgDesc\":\"3333\",\"orgLevel\":4,\"params\":{},\"parentId\":215,\"schId\":1,\"startYear\":\"2023\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:26:02', 128); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (97, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,213,214,215,216\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"c0001\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"c001\",\"orgDesc\":\"c001\",\"orgLevel\":5,\"params\":{},\"parentId\":216,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:28:23', 122); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (98, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,213,214,215,216\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"c002\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"c002\",\"orgDesc\":\"c002\",\"orgLevel\":5,\"params\":{},\"parentId\":216,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:28:40', 126); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (99, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"deptName\":\"c0001a\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"c001a\",\"orgDesc\":\"c001a\",\"orgLevel\":5,\"params\":{},\"parentId\":216,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-01 16:32:44', 159); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (100, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"deptName\":\"c0001a\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"c001a\",\"orgDesc\":\"c001a\",\"orgLevel\":5,\"params\":{},\"parentId\":216,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-01 16:33:51', 44686); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (101, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"deptName\":\"c0001a\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"c001a\",\"orgDesc\":\"c001a\",\"orgLevel\":5,\"params\":{},\"parentId\":216,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-01 16:35:00', 40526); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (102, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,213,214,215,216\",\"children\":[],\"deptId\":217,\"deptName\":\"c0001a\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"c001a\",\"orgDesc\":\"c001a\",\"orgLevel\":5,\"params\":{},\"parentId\":216,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:35:31', 244); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (103, 1, '部门管理', 3, 'com.study.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/218', '127.0.0.1', '', '218', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 16:37:10', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (104, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\",200\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"专业02\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"Z002\",\"orgDesc\":\"\",\"orgLevel\":2,\"params\":{},\"parentId\":200,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 17:31:28', 132); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (105, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.batchAdd()', 'POST', 1, 'admin', NULL, '/dept/batchAdd', '127.0.0.1', '', '{\"children\":[],\"deptId\":200,\"enterYear\":\"2025\",\"orgLevel\":1,\"orgState\":0,\"params\":{},\"schId\":1}', NULL, 1, 'null', '2025-11-01 17:32:34', 42); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (106, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.batchAdd()', 'POST', 1, 'admin', NULL, '/dept/batchAdd', '127.0.0.1', '', '{\"children\":[],\"deptId\":200,\"enterYear\":\"2025\",\"orgLevel\":1,\"orgState\":0,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3}', 0, NULL, '2025-11-01 17:33:40', 388); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (107, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.batchAdd()', 'POST', 1, 'admin', NULL, '/dept/batchAdd', '127.0.0.1', '', '{\"children\":[],\"deptId\":200,\"enterYear\":\"2026\",\"orgLevel\":1,\"orgState\":0,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":4}', 0, NULL, '2025-11-01 17:35:41', 65650); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (108, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.batchAdd()', 'POST', 1, 'admin', NULL, '/dept/batchAdd', '127.0.0.1', '', '{\"children\":[],\"deptId\":200,\"enterYear\":\"2025\",\"orgLevel\":1,\"orgState\":0,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3}', 0, NULL, '2025-11-01 17:39:06', 4306); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (109, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.batchAdd()', 'POST', 1, 'admin', NULL, '/dept/batchAdd', '127.0.0.1', '', '{\"children\":[],\"deptId\":200,\"enterYear\":\"2026\",\"orgLevel\":1,\"orgState\":0,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":4}', 0, NULL, '2025-11-01 17:42:00', 2724); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (110, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.batchAdd()', 'POST', 1, 'admin', NULL, '/dept/batchAdd', '127.0.0.1', '', '{\"children\":[],\"deptId\":200,\"enterYear\":\"2026\",\"orgLevel\":1,\"orgState\":1,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":6}', 0, NULL, '2025-11-01 17:42:26', 656); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (111, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.batchAdd()', 'POST', 1, 'admin', NULL, '/dept/batchAdd', '127.0.0.1', '', '{\"children\":[],\"deptId\":201,\"enterYear\":\"2027\",\"orgLevel\":2,\"orgState\":0,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":2}', 0, NULL, '2025-11-01 17:43:22', 228); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (112, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.batchAdd()', 'POST', 1, 'admin', NULL, '/dept/batchAdd', '127.0.0.1', '', '{\"children\":[],\"deptId\":201,\"enterYear\":\"2025\",\"orgLevel\":2,\"orgState\":1,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3}', 0, NULL, '2025-11-01 17:43:37', 381); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (113, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.setCurrent()', 'POST', 1, 'admin', NULL, '/dept/setCurrent', '127.0.0.1', '', '{\"ancestors\":\"\",\"children\":[],\"delFlag\":\"0\",\"deptId\":231,\"deptName\":\"2026-2027学年\",\"endYear\":\"2027\",\"orderNum\":0,\"orgCode\":\"2026\",\"orgLevel\":4,\"params\":{},\"parentId\":230,\"parentName\":\"2026届\",\"schId\":1,\"startYear\":\"2026\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-01 18:06:47', 150); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (114, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.setCurrent()', 'POST', 1, 'admin', NULL, '/dept/setCurrent', '127.0.0.1', '', '{\"ancestors\":\"\",\"children\":[],\"delFlag\":\"0\",\"deptId\":234,\"deptName\":\"2027-2028学年\",\"endYear\":\"2028\",\"isCurrent\":0,\"orderNum\":0,\"orgCode\":\"2026\",\"orgLevel\":4,\"params\":{},\"parentId\":230,\"parentName\":\"2026届\",\"schId\":1,\"startYear\":\"2027\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-01 18:06:50', 183); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (115, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.setCurrent()', 'POST', 1, 'admin', NULL, '/dept/setCurrent', '127.0.0.1', '', '{\"ancestors\":\"\",\"children\":[],\"delFlag\":\"0\",\"deptId\":231,\"deptName\":\"2026-2027学年\",\"endYear\":\"2027\",\"isCurrent\":0,\"orderNum\":0,\"orgCode\":\"2026\",\"orgLevel\":4,\"params\":{},\"parentId\":230,\"parentName\":\"2026届\",\"schId\":1,\"startYear\":\"2026\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-01 18:10:22', 127); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (116, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.setCurrent()', 'POST', 1, 'admin', NULL, '/dept/setCurrent', '127.0.0.1', '', '{\"ancestors\":\"\",\"children\":[],\"delFlag\":\"0\",\"deptId\":234,\"deptName\":\"2027-2028学年\",\"endYear\":\"2028\",\"isCurrent\":0,\"orderNum\":0,\"orgCode\":\"2026\",\"orgLevel\":4,\"params\":{},\"parentId\":230,\"parentName\":\"2026届\",\"schId\":1,\"startYear\":\"2027\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-01 18:10:25', 126); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (117, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\",230\",\"children\":[],\"deptId\":234,\"deptName\":\"2027-2028学年\",\"endYear\":\"2028\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"2026\",\"orgDesc\":\"ssss\",\"orgLevel\":4,\"params\":{},\"parentId\":230,\"schId\":1,\"startYear\":\"2027\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 18:10:37', 256); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (118, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.setCurrent()', 'POST', 1, 'admin', NULL, '/dept/setCurrent', '127.0.0.1', '', '{\"ancestors\":\"\",\"children\":[],\"delFlag\":\"0\",\"deptId\":235,\"deptName\":\"2028-2029学年\",\"endYear\":\"2029\",\"isCurrent\":0,\"orderNum\":0,\"orgCode\":\"2026\",\"orgLevel\":4,\"params\":{},\"parentId\":230,\"parentName\":\"2026届\",\"schId\":1,\"startYear\":\"2028\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-01 18:13:53', 193); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (119, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.setCurrent()', 'POST', 1, 'admin', NULL, '/dept/setCurrent', '127.0.0.1', '', '{\"ancestors\":\"\",\"children\":[],\"delFlag\":\"0\",\"deptId\":236,\"deptName\":\"2029-2030学年\",\"endYear\":\"2030\",\"isCurrent\":0,\"orderNum\":0,\"orgCode\":\"2026\",\"orgLevel\":4,\"params\":{},\"parentId\":230,\"parentName\":\"2026届\",\"schId\":1,\"startYear\":\"2029\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-01 18:13:56', 189); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (120, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\",230\",\"children\":[],\"deptId\":231,\"deptName\":\"2026-2027学年\",\"endYear\":\"2027\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"2026\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":230,\"schId\":1,\"startYear\":\"2026\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 18:14:00', 252); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (121, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

© 2023 中硕科技(陕西)集团有限公司 版权所有 | 备案号:陕ICP备20007350号-1

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"系统SEO搜索关键词\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/logo1_20251101150925A001.png\",\"systemName\":\"中硕思政\",\"updateTime\":\"2025-11-01 21:34:08\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"欢迎使用\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 21:34:08', 120); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (122, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

© 2023 中硕科技(陕西)集团有限公司 版权所有 | 备案号:陕ICP备20007350号-22

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"系统SEO搜索关键词\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政111\",\"updateTime\":\"2025-11-01 21:41:23\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"欢迎使用中硕思政教学系统\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 21:41:23', 101); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (123, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"管理教师、学生信息,权限分配与账号安全1\",\"appIconPath\":\"/statics/2025/11/01/1_20251101214732A002.png\",\"appId\":1,\"appName\":\"用户系统\",\"appPath\":\"/userSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 21:47:43\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 21:47:43', 68); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (124, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"系统全局参数配置、安全设置及日志管理功能\",\"appIconPath\":\"/statics/2025/11/01/2_20251101214819A003.png\",\"appId\":8,\"appName\":\"系统设置\",\"appPath\":\"/settingSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"8\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 21:48:20\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 21:48:20', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (125, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '0:0:0:0:0:0:0:1%0', '', '{\"apps\":\"1,2,3,4,5,6,7,8,1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 21:52:20\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 21:52:20', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (126, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"系统全局参数配置、安全设置及日志管理功能\",\"appIconPath\":\"/statics/2025/11/01/2_20251101214819A003.png\",\"appId\":8,\"appName\":\"系统设置\",\"appPath\":\"/settingSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"8\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 21:55:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 21:55:00', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (127, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"教学设计、课堂管理、教学评估一体化平台\",\"appIconPath\":\"/statics/2025/11/01/3_20251101215535A005.png\",\"appId\":2,\"appName\":\"思政教学系统\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":1,\"params\":{},\"remark\":\"2\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 21:55:36\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 21:55:36', 68); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (128, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '0:0:0:0:0:0:0:1%0', '', '{\"apps\":\"1,2,3,4,5,6,7,8,1,8,1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 21:56:36\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 21:56:36', 70); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (129, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

© 2023 中硕科技(陕西)集团有限公司 版权所有 | 备案号:陕ICP备20007350号-22

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政111\",\"updateTime\":\"2025-11-01 22:00:51\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"欢迎使用中硕思政教学系统\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 22:00:51', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (130, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '0:0:0:0:0:0:0:1%0', '', '{\"apps\":\"1,2,3,4,5,6,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 22:07:35\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/01/281b57ff8759a5cc9bd0802be68e00e9_20251101220637A006.png\",\"mail\":\"563924009@qq.com\",\"manager\":\"杨飞虎\",\"mgrGender\":\"0\",\"mgrPhone\":\"15202903073\",\"params\":{},\"schoolId\":12,\"schoolName\":\"北京大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 22:07:35\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 22:07:36', 544); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (131, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"系统全局参数配置、安全设置及日志管理功能1\",\"appIconPath\":\"/statics/2025/11/01/2_20251101214819A003.png\",\"appId\":8,\"appName\":\"系统设置\",\"appPath\":\"/settingSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"8\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 22:17:20\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 22:17:20', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (132, 12, '角色管理', 1, 'com.study.system.controller.SysRoleController.add()', 'POST', 1, '杨飞虎', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"createBy\":\"杨飞虎\",\"deptCheckStrictly\":false,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":126,\"roleKey\":\"测试角色\",\"roleName\":\"测试角色\",\"roleSort\":0,\"roleType\":1,\"schoolId\":12,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 22:31:29', 367); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (133, 1, '字典类型', 9, 'com.study.system.controller.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/dict/type/refreshCache', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 22:37:57', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (134, 1, '字典类型', 5, 'com.study.system.controller.SysDictTypeController.export()', 'POST', 1, 'admin', NULL, '/dict/type/export', '0:0:0:0:0:0:0:1%0', '', '{\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-01 22:42:45', 776); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (135, 1, '系统日志', 2, 'com.study.setting.controller.BaseSysLogController.edit()', 'PUT', 1, 'admin', NULL, '/syslog', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"请求地址\'/dept\',发生未知异常\'null\'\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 16:09:24\",\"errorStack\":\"java.lang.NullPointerException\\n\\tat com.study.system.service.impl.SysDeptServiceImpl.insertDept(SysDeptServiceImpl.java:236)\\n\\tat com.study.system.service.impl.SysDeptServiceImpl$$FastClassBySpringCGLIB$$a4bab62b.invoke()\\n\\tat org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\\n\\tat org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\\n\\tat com.study.system.service.impl.SysDeptServiceImpl$$EnhancerBySpringCGLIB$$aa04e831.insertDept()\\n\\tat com.study.system.controller.SysDeptController.add(SysDeptController.java:86)\\n\\tat com.study.system.controller.SysDeptController$$FastClassBySpringCGLIB$$5b31db89.invoke()\\n\\tat org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\\n\\tat org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJA', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 22:56:37', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (136, 1, '系统日志', 2, 'com.study.setting.controller.BaseSysLogController.edit()', 'PUT', 1, 'admin', NULL, '/syslog', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"请求地址\'/dept/tree/full\',发生系统异常\'ServletOutputStream failed to flush: java.io.IOException: Broken pipe\'\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 16:15:02\",\"errorStack\":\"org.springframework.web.context.request.async.AsyncRequestNotUsableException: ServletOutputStream failed to flush: java.io.IOException: Broken pipe\\n\\tat org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleHttpServletResponse.handleIOException(StandardServletAsyncWebRequest.java:320)\\n\\tat org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.flush(StandardServletAsyncWebRequest.java:392)\\n\\tat java.io.FilterOutputStream.flush(FilterOutputStream.java:140)\\n\\tat com.fasterxml.jackson.core.json.UTF8JsonGenerator.flush(UTF8JsonGenerator.java:1187)\\n\\tat com.fasterxml.jackson.databind.ObjectWriter.writeValue(ObjectWriter.java:1009)\\n\\tat org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.writeInternal(AbstractJackson2HttpMessageConverter.java:456)\\n\\tat org.springframework.http.converter.AbstractGenericHttpMessageConverter.write(AbstractGenericHttpMessageConverter.java:104)\\n\\tat org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:290)\\n\\tat org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.handleReturnValue(RequestResponseBodyMethodProcessor.java:183)\\n\\tat org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:78)\\n\\tat org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:135)\\n\\tat org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\\n\\tat org.springframework.web.servlet.mvc', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 22:56:55', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (137, 1, '系统日志', 2, 'com.study.setting.controller.BaseSysLogController.edit()', 'PUT', 1, 'admin', NULL, '/syslog', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"请求地址\'/course/list\',发生未知异常\'Invalid bound statement (not found): com.study.teaching.mapper.BaseCourseMapper.selectBaseCourseList\'\",\"createBy\":\"admin\",\"createTime\":\"2025-11-01 17:00:36\",\"errorStack\":\"org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.study.teaching.mapper.BaseCourseMapper.selectBaseCourseList\\r\\n\\tat org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:235)\\r\\n\\tat org.apache.ibatis.binding.MapperMethod.(MapperMethod.java:53)\\r\\n\\tat org.apache.ibatis.binding.MapperProxy.lambda$cachedInvoker$0(MapperProxy.java:108)\\r\\n\\tat java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660)\\r\\n\\tat org.apache.ibatis.util.MapUtil.computeIfAbsent(MapUtil.java:36)\\r\\n\\tat org.apache.ibatis.binding.MapperProxy.cachedInvoker(MapperProxy.java:95)\\r\\n\\tat org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)\\r\\n\\tat com.sun.proxy.$Proxy127.selectBaseCourseList(Unknown Source)\\r\\n\\tat com.study.teaching.service.impl.BaseCourseServiceImpl.selectBaseCourseList(BaseCourseServiceImpl.java:44)\\r\\n\\tat com.study.teaching.controller.BaseCourseController.list(BaseCourseController.java:46)\\r\\n\\tat com.study.teaching.controller.BaseCourseController$$FastClassBySpringCGLIB$$e7baa22b.invoke()\\r\\n\\tat org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\\r\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\\r\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\\r\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\\r\\n\\tat org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\\r\\n\\tat com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\\r\\n\\tat sun.reflect.NativeMethodAcc', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 22:56:58', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (138, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/10/28/app_20251028112106A002.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":0,\"params\":{},\"remark\":\"6\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-01 22:57:38\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 22:57:38', 58); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (139, 1, '系统日志', 5, 'com.study.setting.controller.BaseSysLogController.export()', 'POST', 1, 'admin', NULL, '/syslog/export', '0:0:0:0:0:0:0:1%0', '', '{\"schId\":\"1\"}', NULL, 0, NULL, '2025-11-01 23:08:04', 1083); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (140, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"id\":6,\"isCurrent\":1,\"isDel\":0,\"isSemester\":0,\"name\":\"2025-2026 学年\",\"params\":{},\"schoolId\":1,\"state\":0,\"updateTime\":\"2025-11-01 23:11:57\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 23:11:57', 141); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (141, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"id\":14,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"pid\":6,\"schoolId\":1,\"updateTime\":\"2025-11-01 23:13:45\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 23:13:45', 106); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (142, 1, '批量增加组织', 1, 'com.study.system.controller.SysDeptController.setCurrent()', 'POST', 1, 'admin', NULL, '/dept/setCurrent', '0:0:0:0:0:0:0:1%0', '', '{\"ancestors\":\",230\",\"children\":[],\"delFlag\":\"0\",\"deptId\":231,\"deptName\":\"2026-2027学年\",\"endYear\":\"2027\",\"isCurrent\":0,\"orderNum\":0,\"orgCode\":\"2026\",\"orgLevel\":4,\"params\":{},\"parentId\":230,\"parentName\":\"2026届\",\"schId\":1,\"startYear\":\"2026\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-01 23:20:09', 155); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (143, 1, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, 'admin', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"createTime\":\"2025-11-01 23:22:41\",\"endDate\":\"2025-11-02\",\"id\":23,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":6,\"schoolId\":1,\"startDate\":\"2025-11-01\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 23:22:41', 72); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (144, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:39:17\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:39:18\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-01 23:39:18', 186); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (145, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":1,\"content\":\"

111117

\",\"id\":13,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:39:37\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"

11267

\",\"id\":14,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:39:37\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-01 23:39:37', 132); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (146, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":44,\"chapterType\":1,\"content\":\"

1111176756767

\",\"id\":13,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:40:29\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"

11267

\",\"id\":14,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:40:29\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-01 23:40:29', 132); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (147, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":44,\"chapterType\":1,\"content\":\"

1111176756767

\",\"id\":13,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:40:37\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"

11267

\",\"id\":14,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:40:37\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-01 23:40:37', 133); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (148, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":44,\"chapterType\":1,\"content\":\"

1111176756767


\",\"id\":13,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:43:30\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"

11267

\",\"id\":14,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:43:30\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-01 23:43:30', 159); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (149, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":3,\"createBy\":\"1\",\"createTime\":\"2025-11-01 23:43:47\",\"id\":48,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":42,\"schoolId\":1,\"subChapters\":[],\"title\":\"222\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":3,\"createBy\":\"1\",\"createTime\":\"2025-11-01 23:43:48\",\"id\":48,\"isDel\":0,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":42,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"222\"}}', 0, NULL, '2025-11-01 23:43:47', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (150, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":45,\"chapterType\":1,\"content\":\"

12

\",\"id\":15,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:43:55\"},{\"chapterId\":45,\"chapterType\":2,\"content\":\"

12

\",\"id\":16,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-01 23:43:55\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-01 23:43:55', 173); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (151, 1, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, 'admin', NULL, '/course', '0:0:0:0:0:0:0:1%0', '', '{\"courseDesc\":\"

111

\",\"courseState\":1,\"courseType\":\"\",\"coverUrl\":\"/statics/2025/11/01/281b57ff8759a5cc9bd0802be68e00e9_20251101234505A007.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-01 23:47:41\",\"id\":9,\"isUse\":1,\"label\":\"\",\"name\":\"改革开放四十周年成就展\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"《草船借箭》电子板贴_20251101234738A008.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/01/《草船借箭》电子板贴_20251101234738A008.pptx\\\",\\\"size\\\":569676,\\\"uid\\\":1762012058456,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":2,\"schoolId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-01 23:47:41', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (152, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"id\":23,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"pid\":6,\"schoolId\":1,\"updateTime\":\"2025-11-02 09:28:01\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 09:28:01', 137); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (153, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":45,\"chapterType\":1,\"content\":\"

ssd的撒旦发射点

\",\"id\":15,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-02 09:54:46\"},{\"chapterId\":45,\"chapterType\":2,\"content\":\"

12

\",\"id\":16,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-02 09:54:47\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-02 09:54:48', 927); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (154, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,6,7,8,1,8,1,8,1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-02 12:00:51\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:00:51', 51); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (155, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,,,2,3,4,5,6,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-02 12:10:57\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:10:57', 160); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (156, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,,,2,3,4,5,6,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-02 12:11:34\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:11:34', 53); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (157, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,,,0,2,3,4,5,6,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-02 12:13:40\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:13:39', 51); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (158, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,,,2,3,4,5,6,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-02 12:15:15\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:15:14', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (159, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,,,0,2,3,4,5,6,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-02 12:20:09\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:20:47', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (160, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,,,2,3,4,5,6,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-02 12:22:47\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:22:46', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (161, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,6,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-02 12:24:04\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:24:04', 66); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (162, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,6,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-02 12:25:16\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:25:16', 51); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (163, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"setting/dict/index\",\"createTime\":\"2025-10-31 14:04:53\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2074,\"menuName\":\"数据字典\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2055,\"path\":\"dict\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:34:12', 132); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (164, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2075', '127.0.0.1', '', '2075', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:37:30', 240); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (165, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2076', '127.0.0.1', '', '2076', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:37:37', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (166, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2077', '127.0.0.1', '', '2077', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:37:47', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (167, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2078', '127.0.0.1', '', '2078', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:37:52', 110); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (168, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2079', '127.0.0.1', '', '2079', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:38:04', 101); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (169, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2074', '127.0.0.1', '', '2074', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 12:38:41', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (170, 1, '字典类型', 1, 'com.study.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"test\",\"dictType\":\"test\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 13:31:46', 114); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (171, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"t1\",\"dictSort\":0,\"dictType\":\"test\",\"dictValue\":\"t1\",\"listClass\":\"default\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 13:36:56', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (172, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

© 2023 中硕科技(陕西)集团有限公司 版权所有 | 备案号:陕ICP备20007350号-22

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政111\",\"updateTime\":\"2025-11-02 13:56:41\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识111\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 13:56:41', 110); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (173, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-02 14:00:28\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/02/logo1_20251102135919A001.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"天龙真人\",\"mgrGender\":\"0\",\"mgrPhone\":\"13433333333\",\"params\":{},\"schoolId\":13,\"schoolName\":\"茅山道法学院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-02 14:00:28\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 14:00:28', 981); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (174, 1, '字典类型', 3, 'com.study.system.controller.SysDictDataController.remove()', 'DELETE', 1, 'admin', NULL, '/dict/data/100', '127.0.0.1', '', '[100]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 15:58:41', 422); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (175, 1, '系统日志', 5, 'com.study.setting.controller.BaseSysLogController.export()', 'POST', 1, 'admin', NULL, '/syslog/export', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 0, NULL, '2025-11-02 16:00:05', 14471); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (176, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政111\",\"updateTime\":\"2025-11-02 19:35:12\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识111\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-02 19:35:50', 196); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (177, 1, '学年学期设置', 3, 'com.study.setting.controller.BaseAcademicController.remove()', 'DELETE', 1, 'admin', NULL, '/academic/23', '127.0.0.1', '', '[23]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 09:31:31', 78); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (178, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":13,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"pid\":6,\"schoolId\":1,\"updateTime\":\"2025-11-03 09:31:36\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 09:31:37', 152); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (179, 1, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-03 09:51:36\",\"endDate\":\"2025-11-06\",\"id\":24,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":7,\"schoolId\":1,\"startDate\":\"2025-11-03\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 09:51:36', 228); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (180, 1, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-03 09:51:43\",\"endDate\":\"2025-11-13\",\"id\":25,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":7,\"schoolId\":1,\"startDate\":\"2025-11-10\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 09:51:44', 123); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (181, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":25,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"pid\":7,\"schoolId\":1,\"updateTime\":\"2025-11-03 09:52:07\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 09:52:07', 228); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (182, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"endDate\":\"2025-11-13\",\"id\":25,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":7,\"schoolId\":1,\"startDate\":\"2025-11-10\",\"state\":0,\"updateTime\":\"2025-11-03 09:52:23\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 09:52:23', 122); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (183, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":25,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"pid\":7,\"schoolId\":1,\"updateTime\":\"2025-11-03 09:52:28\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 09:52:29', 223); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (184, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"endDate\":\"2025-11-13\",\"id\":25,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":7,\"schoolId\":1,\"startDate\":\"2025-11-10\",\"state\":0,\"updateTime\":\"2025-11-03 10:08:27\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 10:08:27', 155); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (185, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":25,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"pid\":7,\"schoolId\":1,\"updateTime\":\"2025-11-03 10:08:30\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 10:08:30', 243); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (186, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":14,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"pid\":6,\"schoolId\":1,\"updateTime\":\"2025-11-03 11:19:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:19:56', 169); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (187, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"endDate\":\"2025-11-13\",\"id\":25,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":7,\"schoolId\":1,\"startDate\":\"2025-11-10\",\"state\":0,\"updateTime\":\"2025-11-03 11:20:06\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:20:07', 72); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (188, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":13,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"pid\":6,\"schoolId\":1,\"updateTime\":\"2025-11-03 11:20:11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:20:11', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (189, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":14,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 11:22:34\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:22:34', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (190, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"endDate\":\"2026-07-15\",\"id\":14,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第二学期\",\"params\":{},\"pid\":6,\"schoolId\":1,\"startDate\":\"2026-03-01\",\"state\":0,\"updateTime\":\"2025-11-03 11:22:44\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:22:44', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (191, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":14,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 11:25:13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:25:14', 172); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (192, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":24,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 11:25:18\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:25:18', 125); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (193, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":13,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 11:25:22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:25:22', 128); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (194, 1, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-03 11:36:44\",\"id\":26,\"isCurrent\":0,\"isDel\":0,\"isSemester\":0,\"name\":\"222\",\"params\":{},\"schoolId\":1,\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:36:45', 67); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (195, 1, '学年学期设置', 3, 'com.study.setting.controller.BaseAcademicController.remove()', 'DELETE', 1, 'admin', NULL, '/academic/26', '127.0.0.1', '', '[26]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:36:49', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (196, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"endDate\":\"2025-11-13\",\"id\":25,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第2学期\",\"params\":{},\"pid\":7,\"schoolId\":1,\"startDate\":\"2025-11-10\",\"state\":0,\"updateTime\":\"2025-11-03 11:44:36\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:44:37', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (197, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"endDate\":\"2025-11-06\",\"id\":24,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第1学期\",\"params\":{},\"pid\":7,\"schoolId\":1,\"startDate\":\"2025-11-03\",\"state\":0,\"updateTime\":\"2025-11-03 11:44:43\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:44:44', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (198, 1, '学年学期设置', 3, 'com.study.setting.controller.BaseAcademicController.remove()', 'DELETE', 1, 'admin', NULL, '/academic/9', '127.0.0.1', '', '[9]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:44:52', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (199, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":7,\"isCurrent\":1,\"isDel\":0,\"isSemester\":0,\"name\":\"222\",\"params\":{},\"schoolId\":1,\"state\":0,\"updateTime\":\"2025-11-03 11:45:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:45:10', 137); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (200, 1, '学年学期设置', 3, 'com.study.setting.controller.BaseAcademicController.remove()', 'DELETE', 1, 'admin', NULL, '/academic/18', '127.0.0.1', '', '[18]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:47:37', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (201, 1, '学年学期设置', 3, 'com.study.setting.controller.BaseAcademicController.remove()', 'DELETE', 1, 'admin', NULL, '/academic/19', '127.0.0.1', '', '[19]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 11:47:42', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (202, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_resource_tag,base_resource_category,base_resource_subject_category,base_resource_type\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 12:02:05', 2641); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (203, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"资源分类管理\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":2003,\"path\":\"/resourceCategoryMgr\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 12:05:43', 263); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (204, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"category\",\"className\":\"BaseResourceCategory\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1216,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1217,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"分类名称\",\"columnId\":1218,\"columnName\":\"name\",\"columnType\":\"varchar(50)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"IconPath\",\"columnComment\":\"分类图标\",\"columnId\":1219,\"columnName\":\"icon_path\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"false\",\"javaField\":\"iconPath\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":false,\"que', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-modules\\study-gen\\target\\classes\\mapper\\generator\\GenTableColumnMapper.xml]\r\n### The error may involve com.study.gen.mapper.GenTableColumnMapper.updateGenTableColumn-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update gen_table_column SET column_comment = ?, java_type = ?, java_field = ?, is_insert = ?, is_edit = ?, is_list = ?, is_query = ?, query_type = ?, html_type = ?, dict_type = ?, sort = ?, update_by = ?, update_time = sysdate() where column_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\n; Data truncation: Data too long for column \'is_query\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1', '2025-11-03 12:10:16', 899); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (205, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"category\",\"className\":\"BaseResourceCategory\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1216,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1217,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"分类名称\",\"columnId\":1218,\"columnName\":\"name\",\"columnType\":\"varchar(50)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"IconPath\",\"columnComment\":\"分类图标\",\"columnId\":1219,\"columnName\":\"icon_path\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"false\",\"javaField\":\"iconPath\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":false,\"que', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-modules\\study-gen\\target\\classes\\mapper\\generator\\GenTableColumnMapper.xml]\r\n### The error may involve com.study.gen.mapper.GenTableColumnMapper.updateGenTableColumn-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update gen_table_column SET column_comment = ?, java_type = ?, java_field = ?, is_insert = ?, is_edit = ?, is_list = ?, is_query = ?, query_type = ?, html_type = ?, dict_type = ?, sort = ?, update_by = ?, update_time = sysdate() where column_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\n; Data truncation: Data too long for column \'is_query\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1', '2025-11-03 12:10:27', 417); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (206, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"category\",\"className\":\"BaseResourceCategory\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1216,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1217,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"分类名称\",\"columnId\":1218,\"columnName\":\"name\",\"columnType\":\"varchar(50)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"IconPath\",\"columnComment\":\"分类图标\",\"columnId\":1219,\"columnName\":\"icon_path\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"false\",\"javaField\":\"iconPath\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":false,\"que', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-modules\\study-gen\\target\\classes\\mapper\\generator\\GenTableColumnMapper.xml]\r\n### The error may involve com.study.gen.mapper.GenTableColumnMapper.updateGenTableColumn-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update gen_table_column SET column_comment = ?, java_type = ?, java_field = ?, is_insert = ?, is_edit = ?, is_list = ?, is_query = ?, query_type = ?, html_type = ?, dict_type = ?, sort = ?, update_by = ?, update_time = sysdate() where column_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\n; Data truncation: Data too long for column \'is_query\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1', '2025-11-03 12:10:52', 386); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (207, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"category\",\"className\":\"BaseResourceCategory\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1216,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1217,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"分类名称\",\"columnId\":1218,\"columnName\":\"name\",\"columnType\":\"varchar(50)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"IconPath\",\"columnComment\":\"分类图标\",\"columnId\":1219,\"columnName\":\"icon_path\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"iconPath\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryTyp', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 12:11:04', 646); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (208, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_resource_category\"}', NULL, 0, NULL, '2025-11-03 12:11:11', 594); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (209, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"resouceCategory\",\"className\":\"BaseResourceCategory\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1216,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"updateTime\":\"2025-11-03 12:11:03\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1217,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"updateTime\":\"2025-11-03 12:11:03\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"分类名称\",\"columnId\":1218,\"columnName\":\"name\",\"columnType\":\"varchar(50)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":82,\"updateBy\":\"\",\"updateTime\":\"2025-11-03 12:11:03\",\"usableColumn\":false},{\"capJavaField\":\"IconPath\",\"columnComment\":\"分类图标\",\"columnId\":1219,\"columnName\":\"icon_path\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"i', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 12:16:32', 656); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (210, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_resource_category\"}', NULL, 0, NULL, '2025-11-03 12:16:35', 127); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (211, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"subjectCategory\",\"className\":\"BaseResourceSubjectCategory\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1225,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":83,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1226,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":83,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"学科门类名称\",\"columnId\":1227,\"columnName\":\"name\",\"columnType\":\"varchar(50)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:01\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":83,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"IconPath\",\"columnComment\":\"图标\",\"columnId\":1228,\"columnName\":\"icon_path\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:01\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"iconPath\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 12:19:05', 594); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (212, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"resouceType\",\"className\":\"BaseResourceType\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1241,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:02\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":85,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1242,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:02\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":85,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"类型名称\",\"columnId\":1243,\"columnName\":\"name\",\"columnType\":\"varchar(50)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:02\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":85,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"IconPath\",\"columnComment\":\"图标\",\"columnId\":1244,\"columnName\":\"icon_path\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:02\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"iconPath\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 12:20:04', 622); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (213, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"resourceTag\",\"className\":\"BaseResourceTag\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1233,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:01\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":84,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1234,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:01\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":84,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"标签名称\",\"columnId\":1235,\"columnName\":\"name\",\"columnType\":\"varchar(50)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:01\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":84,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"IconPath\",\"columnComment\":\"图标\",\"columnId\":1236,\"columnName\":\"icon_path\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:01\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"iconPath\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"quer', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 12:20:45', 591); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (214, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_resource_category,base_resource_subject_category,base_resource_tag,base_resource_type\"}', NULL, 0, NULL, '2025-11-03 12:21:00', 406); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (215, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"resourceType\",\"className\":\"BaseResourceType\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1241,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:02\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":85,\"updateBy\":\"\",\"updateTime\":\"2025-11-03 12:20:04\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1242,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:02\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":85,\"updateBy\":\"\",\"updateTime\":\"2025-11-03 12:20:04\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"类型名称\",\"columnId\":1243,\"columnName\":\"name\",\"columnType\":\"varchar(50)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:02\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":85,\"updateBy\":\"\",\"updateTime\":\"2025-11-03 12:20:04\",\"usableColumn\":false},{\"capJavaField\":\"IconPath\",\"columnComment\":\"图标\",\"columnId\":1244,\"columnName\":\"icon_path\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:02\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:12:10', 584); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (216, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"subjectCategory\",\"className\":\"BaseResourceSubjectCategory\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1225,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":83,\"updateBy\":\"\",\"updateTime\":\"2025-11-03 12:19:05\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1226,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:00\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":83,\"updateBy\":\"\",\"updateTime\":\"2025-11-03 12:19:05\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"学科门类名称\",\"columnId\":1227,\"columnName\":\"name\",\"columnType\":\"varchar(50)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:01\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":83,\"updateBy\":\"\",\"updateTime\":\"2025-11-03 12:19:05\",\"usableColumn\":false},{\"capJavaField\":\"IconPath\",\"columnComment\":\"图标\",\"columnId\":1228,\"columnName\":\"icon_path\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-03 12:02:01\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:12:28', 586); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (217, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_resource_category,base_resource_subject_category,base_resource_tag,base_resource_type\"}', NULL, 0, NULL, '2025-11-03 14:12:51', 532); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (218, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\",202\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"cokkk\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"ck001\",\"orgDesc\":\"xxx\",\"orgLevel\":4,\"params\":{},\"parentId\":202,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:17:26', 117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (219, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"resource/resourceCategory/index\",\"createTime\":\"2025-11-03 14:17:48\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2093,\"menuName\":\"资源分类设置\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2092,\"path\":\"resourceCategory\",\"perms\":\"resource:resourceCategory:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:25:30', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (220, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-03 14:17:48\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2094,\"menuName\":\"资源分类设置查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2093,\"path\":\"#\",\"perms\":\"resource:resourceCategory:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:25:43', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (221, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-03 14:17:48\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2095,\"menuName\":\"资源分类设置新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2093,\"path\":\"#\",\"perms\":\"resource:resourceCategory:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:26:02', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (222, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-03 14:17:48\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2096,\"menuName\":\"资源分类设置修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2093,\"path\":\"#\",\"perms\":\"resource:resourceCategory:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:26:14', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (223, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-03 14:17:48\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2097,\"menuName\":\"资源分类设置删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2093,\"path\":\"#\",\"perms\":\"resource:resourceCategory:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:26:26', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (224, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-03 14:17:48\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuId\":2098,\"menuName\":\"资源分类设置导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2093,\"path\":\"#\",\"perms\":\"resource:resourceCategory:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:26:44', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (225, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2098', '127.0.0.1', '', '2098', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:26:59', 124); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (226, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\",202\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"c01\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"co9999\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":202,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:27:02', 120); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (227, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\",202\",\"children\":[],\"deptId\":245,\"deptName\":\"c02\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"ck001\",\"orgDesc\":\"xxx\",\"orgLevel\":4,\"params\":{},\"parentId\":202,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:27:20', 229); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (228, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\",202\",\"children\":[],\"deptId\":245,\"deptName\":\"c02\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"ck001\",\"orgDesc\":\"xxx\",\"orgLevel\":4,\"params\":{},\"parentId\":202,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:28:08', 236); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (229, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":6,\"ancestors\":\",202\",\"children\":[],\"deptId\":245,\"deptName\":\"c02\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"ck001\",\"orgDesc\":\"xxx\",\"orgLevel\":4,\"params\":{},\"parentId\":202,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:29:34', 225); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (230, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":7,\"ancestors\":\",202\",\"children\":[],\"deptId\":246,\"deptName\":\"c01\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"co9999\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":202,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 14:30:51', 227); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (231, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2009,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2010,2015,2016,2017,2018,2019,2020,2011,2012,2021,2022,2023,2024,2025,2026,2053,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2058,2059,2060,2061,2062,2063,2013,2014,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2039,2041,2042,2043,2048,2049,2050,2051,2052,2044,2045,2046,2047,2054,2055,2056,2057,2064,2065,2066,2067,2068,2069,2070,2073,2071,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"roleSort\":0,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 15:09:14', 360); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (232, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":1,\"content\":\"

1111176756767


\",\"id\":13,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 16:55:00\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"

11267

\",\"id\":14,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 16:55:01\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-03 16:55:01', 238); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (233, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":45,\"chapterType\":1,\"content\":\"

ssd的撒旦发射点

\",\"id\":15,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 16:55:04\"},{\"chapterId\":45,\"chapterType\":2,\"content\":\"

12

\",\"id\":16,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 16:55:04\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-03 16:55:05', 170); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (234, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":45,\"chapterType\":1,\"content\":\"

ssd的撒旦发射点

\",\"id\":15,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 16:55:44\"},{\"chapterId\":45,\"chapterType\":2,\"content\":\"

12

\",\"id\":16,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 16:55:44\"},{\"chapterId\":45,\"chapterType\":11,\"content\":\"\",\"createTime\":\"2025-11-03 16:55:44\",\"id\":18,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-03 16:55:44', 201); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (235, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":1,\"content\":\"

1111176756767


\",\"id\":13,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 16:56:07\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"

11267

\",\"id\":14,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 16:56:07\"},{\"chapterId\":44,\"chapterType\":11,\"content\":\"\",\"createTime\":\"2025-11-03 16:56:07\",\"id\":19,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-03 16:56:07', 201); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (236, 1, '学年学期设置', 3, 'com.study.setting.controller.BaseAcademicController.remove()', 'DELETE', 1, 'admin', NULL, '/academic/8', '127.0.0.1', '', '[8]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 17:49:39', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (237, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":6,\"isCurrent\":1,\"isDel\":0,\"isSemester\":0,\"name\":\"2025-2026 学年\",\"params\":{},\"schoolId\":1,\"state\":0,\"updateTime\":\"2025-11-03 17:49:47\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 17:49:47', 172); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (238, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"id\":14,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 17:50:04\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 17:50:04', 140); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (239, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 17:52:58\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 17:52:58\"},{\"chapterId\":42,\"chapterType\":11,\"content\":\"\",\"createTime\":\"2025-11-03 17:52:58\",\"id\":20,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-03 17:52:58', 221); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (240, 1, '资源分类设置', 1, 'com.study.resource.controller.BaseResourceCategoryController.add()', 'POST', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"\",\"createTime\":\"2025-11-03 17:56:24\",\"description\":\"思政课程资源库,包含思想政治教育相关的课件、教案、案例等教学资源。\",\"iconPath\":\"/statics/2025/11/03/logo1_20251103175615A001.png\",\"id\":1,\"name\":\"爱国主义教育\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 17:56:26', 232); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (241, 1, '资源分类设置', 1, 'com.study.resource.controller.BaseResourceCategoryController.add()', 'POST', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"\",\"createTime\":\"2025-11-03 17:58:13\",\"description\":\"思政课程资源库,包含思想政治教育相关的课件、教案、案例等教学资源。\",\"iconPath\":\"/statics/2025/11/03/logo1_20251103175811A002.png\",\"id\":2,\"name\":\"爱国主义教育\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 17:58:13', 217); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (242, 1, '资源分类设置', 1, 'com.study.resource.controller.BaseResourceCategoryController.add()', 'POST', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"\",\"createTime\":\"2025-11-03 18:07:22\",\"description\":\"专业课程中的思政元素融合,帮助教师在专业课程中融入思想政治教育内容。\",\"iconPath\":\"/statics/2025/11/03/logo2_20251103180721A003.png\",\"id\":3,\"name\":\"党史学习\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 18:07:25', 349); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (243, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '0:0:0:0:0:0:0:1%0', '', '{\"apps\":\"1,2,3,4,5,6,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-03 18:08:59\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 18:08:59', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (244, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,6,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-03 18:11:51\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 18:11:51', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (245, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '0:0:0:0:0:0:0:1%0', '', '{\"apps\":\"1,2,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-02 14:00:28\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/02/logo1_20251102135919A001.png\",\"mail\":\"aab@aa1.com\",\"manager\":\"天龙真人\",\"mgrGender\":\"0\",\"mgrPhone\":\"13433333333\",\"params\":{},\"schoolId\":13,\"schoolName\":\"茅山道法学院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-03 18:13:27\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 18:13:27', 53); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (246, 1, '资源分类设置', 3, 'com.study.resource.controller.BaseResourceCategoryController.remove()', 'DELETE', 1, 'admin', NULL, '/resourceCategory/2', '127.0.0.1', '', '[2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 18:19:56', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (247, 13, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '天龙真人', NULL, '/dept', '0:0:0:0:0:0:0:1%0', '', '{\"ancestors\":\"0\",\"children\":[],\"createBy\":\"天龙真人\",\"deptName\":\"信息工程学院\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"CA001\",\"orgDesc\":\"信息工程学院\",\"orgLevel\":1,\"params\":{},\"parentId\":0,\"schId\":13,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 18:23:42', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (248, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"id\":13,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-03 23:33:18\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 23:33:18', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (249, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"id\":7,\"isCurrent\":1,\"isDel\":0,\"isSemester\":0,\"name\":\"222\",\"params\":{},\"schoolId\":1,\"state\":0,\"updateTime\":\"2025-11-03 23:33:32\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 23:33:33', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (250, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '0:0:0:0:0:0:0:1%0', '', '{\"academicId\":7,\"ancestors\":\",228\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"我的班级1\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"cs004\",\"orgDesc\":\"asdas\",\"orgLevel\":4,\"params\":{},\"parentId\":228,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-03 23:40:05', 111); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (251, 1, '部门管理', 3, 'com.study.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/228', '0:0:0:0:0:0:0:1%0', '', '228', '{\"msg\":\"存在下级部门,不允许删除\",\"code\":601}', 0, NULL, '2025-11-03 23:48:55', 53); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (252, 1, '资源分类设置', 1, 'com.study.resource.controller.BaseResourceCategoryController.add()', 'POST', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2025-11-04 10:00:04\",\"description\":\"\",\"iconPath\":\"/statics/2025/11/04/logo1_20251104100001A001.png\",\"id\":4,\"name\":\"党史学习\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 10:00:04', 105); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (253, 1, '资源分类设置', 3, 'com.study.resource.controller.BaseResourceCategoryController.remove()', 'DELETE', 1, 'admin', NULL, '/resourceCategory/3', '127.0.0.1', '', '[3]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 10:00:11', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (254, 1, '资源分类设置', 2, 'com.study.resource.controller.BaseResourceCategoryController.edit()', 'PUT', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2025-11-04 10:00:04\",\"description\":\"123\",\"iconPath\":\"/statics/2025/11/04/logo1_20251104100001A001.png\",\"id\":4,\"isDel\":0,\"name\":\"党史学习\",\"params\":{},\"schId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-04 10:00:29\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 10:00:29', 53); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (255, 1, '资源分类设置', 1, 'com.study.resource.controller.BaseResourceCategoryController.add()', 'POST', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2025-11-04 10:01:37\",\"description\":\"111\",\"iconPath\":\"/statics/2025/11/04/logo2_20251104100134A002.png\",\"id\":5,\"name\":\"思想政治\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 10:01:38', 78); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (256, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"资源管理\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":2003,\"path\":\"/resourceMgr\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 12:00:34', 161); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (257, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_resource\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 12:11:56', 1636); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (258, 1, '代码生成', 2, 'com.study.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/base_resource', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 12:12:50', 1321); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (259, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"resource\",\"className\":\"BaseResource\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"\",\"columnId\":1249,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-04 12:11:15\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":86,\"updateBy\":\"\",\"updateTime\":\"2025-11-04 12:12:49\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"资源名称\",\"columnId\":1250,\"columnName\":\"name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-04 12:11:15\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":86,\"updateBy\":\"\",\"updateTime\":\"2025-11-04 12:12:49\",\"usableColumn\":false},{\"capJavaField\":\"AuthorId\",\"columnComment\":\"作者ID\",\"columnId\":1251,\"columnName\":\"author_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-04 12:11:16\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"authorId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":86,\"updateBy\":\"\",\"updateTime\":\"2025-11-04 12:12:49\",\"usableColumn\":false},{\"capJavaField\":\"AuthorName\",\"columnComment\":\"作者名称\",\"columnId\":1252,\"columnName\":\"author_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-04 12:11:16\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 12:17:23', 1387); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (260, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_resource\"}', NULL, 0, NULL, '2025-11-04 12:17:35', 420); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (261, 1, '代码生成', 2, 'com.study.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/base_resource', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 12:41:05', 6526); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (262, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"resource\",\"className\":\"BaseResource\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"\",\"columnId\":1249,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-04 12:11:15\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":86,\"updateBy\":\"\",\"updateTime\":\"2025-11-04 12:40:44\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"资源名称\",\"columnId\":1250,\"columnName\":\"name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-04 12:11:15\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":86,\"updateBy\":\"\",\"updateTime\":\"2025-11-04 12:40:44\",\"usableColumn\":false},{\"capJavaField\":\"AuthorId\",\"columnComment\":\"作者ID\",\"columnId\":1251,\"columnName\":\"author_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-04 12:11:16\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"authorId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":86,\"updateBy\":\"\",\"updateTime\":\"2025-11-04 12:40:44\",\"usableColumn\":false},{\"capJavaField\":\"AuthorName\",\"columnComment\":\"作者名称\",\"columnId\":1252,\"columnName\":\"author_name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-04 12:11:16\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 12:41:12', 1397); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (263, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_resource\"}', NULL, 0, NULL, '2025-11-04 12:41:15', 209); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (264, 1, '字典类型', 9, 'com.study.system.controller.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/dict/type/refreshCache', '0:0:0:0:0:0:0:1%0', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 17:43:36', 58); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (265, 1, '学科设置', 1, 'com.study.resource.controller.BaseResourceSubjectController.add()', 'POST', 1, 'admin', NULL, '/subject', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 17:53:14\",\"iconPath\":\"/statics/2025/11/04/logo1_20251104175306A001.png\",\"id\":1,\"name\":\" 哲学\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 17:53:15', 315); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (266, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"deptId\":200,\"deptName\":\"马克思主义学院\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"D001\",\"orgDesc\":\"\",\"orgLevel\":1,\"params\":{},\"parentId\":0,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 17:54:15', 140); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (267, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\",200\",\"children\":[],\"deptId\":201,\"deptName\":\"道德与法制专业\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"Z001\",\"orgDesc\":\"\",\"orgLevel\":2,\"params\":{},\"parentId\":200,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 17:54:33', 210); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (268, 1, '学科设置', 1, 'com.study.resource.controller.BaseResourceSubjectController.add()', 'POST', 1, 'admin', NULL, '/subject', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 18:33:40\",\"iconPath\":\"/statics/2025/11/04/logo3_20251104183338A002.png\",\"id\":2,\"name\":\"经济学\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 18:34:18', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (269, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 18:36:45\",\"iconPath\":\"/statics/2025/11/04/logo1_20251104183644A004.png\",\"id\":1,\"name\":\"经济学\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 18:36:45', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (270, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 18:36:46\",\"createUserName\":\"admin\",\"iconPath\":\"/statics/2025/11/04/logo1_20251104183644A004.png\",\"id\":1,\"isDel\":0,\"name\":\"课件\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-04 18:39:47\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 18:39:47', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (271, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 18:40:03\",\"iconPath\":\"/statics/2025/11/04/logo2_20251104184002A005.png\",\"id\":2,\"name\":\"视频\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 18:40:03', 53); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (272, 1, '资源类型设置', 3, 'com.study.resource.controller.BaseResourceTypeController.remove()', 'DELETE', 1, 'admin', NULL, '/resourceType/2', '127.0.0.1', '', '[2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 18:44:48', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (273, 1, '资源分类设置', 2, 'com.study.resource.controller.BaseResourceCategoryController.edit()', 'PUT', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 10:01:38\",\"createUserName\":\"admin\",\"description\":\"111\",\"iconPath\":\"/statics/2025/11/04/logo2_20251104100134A002.png\",\"id\":5,\"isDel\":0,\"name\":\"思想政治1\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-04 19:03:24\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 19:03:25', 103); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (274, 1, '学科设置', 2, 'com.study.resource.controller.BaseResourceSubjectController.edit()', 'PUT', 1, 'admin', NULL, '/subject', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 18:33:40\",\"createUserName\":\"admin\",\"iconPath\":\"/statics/2025/11/04/logo3_20251104183338A002.png\",\"id\":2,\"isDel\":0,\"name\":\"经济学1\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-04 19:03:48\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 19:03:47', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (275, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 19:05:51\",\"iconPath\":\"/statics/2025/11/04/wechartQr_20251104190550A001.png\",\"id\":3,\"name\":\"视频\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 19:05:51', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (276, 1, '资源类型设置', 3, 'com.study.resource.controller.BaseResourceTypeController.remove()', 'DELETE', 1, 'admin', NULL, '/resourceType/3', '127.0.0.1', '', '[3]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 19:06:08', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (277, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 19:06:21\",\"iconPath\":\"/statics/2025/11/04/app_20251104190618A002.png\",\"id\":4,\"name\":\"视频\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 19:06:21', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (278, 1, '资源标签设置', 1, 'com.study.resource.controller.BaseResourceTagController.add()', 'POST', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 19:21:50\",\"iconPath\":\"/statics/2025/11/04/app_20251104192148A003.png\",\"id\":1,\"name\":\"爱国主义教育\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 19:21:50', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (279, 1, '资源标签设置', 1, 'com.study.resource.controller.BaseResourceTagController.add()', 'POST', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 20:57:16\",\"iconPath\":\"/statics/2025/11/04/wechartQr_20251104205715A004.png\",\"name\":\"共同富裕\",\"params\":{},\"schId\":1}', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 35,627 milliseconds ago. The last packet sent successfully to the server was 35,652 milliseconds ago.\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\resource\\BaseResourceTagMapper.xml]\r\n### The error may involve com.study.resource.mapper.BaseResourceTagMapper.insertBaseResourceTag-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_resource_tag ( sch_id, name, icon_path, create_by, create_time ) values ( ?, ?, ?, ?, ? )\r\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 35,627 milliseconds ago. The last packet sent successfully to the server was 35,652 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 35,627 milliseconds ago. The last packet sent successfully to the server was 35,652 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 35,627 milliseconds ago. The last packet sent successfully to the server was 35,652 milliseconds ago.', '2025-11-04 20:58:53', 58272); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (280, 1, '资源标签设置', 3, 'com.study.resource.controller.BaseResourceTagController.remove()', 'DELETE', 1, 'admin', NULL, '/resourceTag/2', '127.0.0.1', '', '[2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 21:04:11', 53); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (281, 1, '资源标签设置', 2, 'com.study.resource.controller.BaseResourceTagController.edit()', 'PUT', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 20:58:49\",\"createUserName\":\"admin\",\"iconPath\":\"/statics/2025/11/04/wechartQr_20251104205715A004.png\",\"id\":2,\"isDel\":0,\"name\":\"共同富裕1\",\"params\":{},\"resourceCount\":1,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-04 21:03:34\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-04 21:04:12', 54); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (282, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:36:31\",\"iconPath\":\"/statics/2025/11/05/logo3_20251105093629A001.png\",\"id\":5,\"name\":\"案例\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 09:36:32', 311); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (283, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:36:45\",\"iconPath\":\"/statics/2025/11/05/logo2_20251105093644A002.png\",\"id\":6,\"name\":\"图片\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 09:36:46', 163); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (284, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:46:08\",\"iconPath\":\"/statics/2025/11/05/logo4_20251105094606A003.png\",\"id\":7,\"name\":\"音频\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 09:46:10', 1317); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (285, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:46:22\",\"iconPath\":\"/statics/2025/11/05/app_20251105094621A004.png\",\"id\":8,\"name\":\" 链接\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 09:46:23', 162); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (286, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:46:36\",\"iconPath\":\"/statics/2025/11/05/wechartQr_20251105094635A005.png\",\"id\":9,\"name\":\"全景\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 09:46:36', 79); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (287, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:46:53\",\"iconPath\":\"/statics/2025/11/05/logo4_20251105094651A006.png\",\"id\":10,\"name\":\"模型\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 09:46:53', 204); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (288, 1, '资源类型设置', 1, 'com.study.resource.controller.BaseResourceTypeController.add()', 'POST', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:47:28\",\"iconPath\":\"/statics/2025/11/05/logo1_20251105094727A007.png\",\"id\":11,\"name\":\"虚拟仿真展馆\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 09:47:29', 156); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (289, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"马克思主义学院\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"A001\",\"orgDesc\":\"\",\"orgLevel\":1,\"params\":{},\"parentId\":0,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 10:26:21', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (290, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,1\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"思想政治教育\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"B001\",\"orgDesc\":\"\",\"orgLevel\":2,\"params\":{},\"parentId\":1,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 10:26:34', 117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (291, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,1\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"思想政治教育2\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"B002\",\"orgDesc\":\"\",\"orgLevel\":2,\"params\":{},\"parentId\":1,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 10:26:47', 114); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (292, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,1,2\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"2021级\",\"endYear\":\"\",\"enterYear\":\"2021\",\"orderNum\":0,\"orgCode\":\"C001\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":2,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 10:27:04', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (293, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":6,\"ancestors\":\"0,1,2,4\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"思政2101班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"D001\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":4,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 10:27:21', 120); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (294, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":6,\"ancestors\":\"0,1,2,4\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"思政2102班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"D002\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":4,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 10:27:49', 120); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (295, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,1,3\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"2026级\",\"endYear\":\"\",\"enterYear\":\"2026\",\"orderNum\":0,\"orgCode\":\"C002\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":3,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 10:29:27', 140); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (296, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":6,\"ancestors\":\"0,1,3,7\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"思政2601班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"D003\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":7,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 10:29:44', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (297, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":6,\"ancestors\":\"0,1,3,7\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"思政2602班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"D004\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":7,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 10:30:03', 121); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (298, 1, '资源标签设置', 1, 'com.study.resource.controller.BaseResourceTagController.add()', 'POST', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 12:18:42\",\"iconPath\":\"/statics/2025/11/05/logo3_20251105121841A003.png\",\"id\":5,\"name\":\" 立德树人\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 12:18:42', 50); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (299, 1, '资源标签设置', 1, 'com.study.resource.controller.BaseResourceTagController.add()', 'POST', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 12:18:31\",\"iconPath\":\"/statics/2025/11/05/logo3_20251105121830A002.png\",\"id\":4,\"name\":\"师德师风\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 12:18:50', 51); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (300, 1, '资源标签设置', 1, 'com.study.resource.controller.BaseResourceTagController.add()', 'POST', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 12:18:54\",\"iconPath\":\"/statics/2025/11/05/logo3_20251105121852A004.png\",\"id\":6,\"name\":\" 教育公平\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 12:18:54', 51); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (301, 1, '资源标签设置', 1, 'com.study.resource.controller.BaseResourceTagController.add()', 'POST', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 12:18:19\",\"iconPath\":\"/statics/2025/11/05/logo2_20251105121817A001.png\",\"id\":3,\"name\":\"共同富裕\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 12:18:58', 165); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (302, 1, '资源标签设置', 1, 'com.study.resource.controller.BaseResourceTagController.add()', 'POST', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 12:19:12\",\"iconPath\":\"/statics/2025/11/05/logo3_20251105121911A005.png\",\"id\":7,\"name\":\" 可持续发展\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 12:19:12', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (303, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 14:07:38\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 14:07:38\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"sd1759803873_2_20251105140728A011.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":832000,\\\"duration\\\":5.066667,\\\"source\\\":\\\"本地上传\\\"}\",\"createTime\":\"2025-11-05 14:07:39\",\"id\":21,\"params\":{},\"schoolId\":1},{\"chapterId\":42,\"chapterType\":11,\"content\":\"\",\"id\":20,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 14:07:39\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-05 14:07:39', 387); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (304, 1, '代码生成', 2, 'com.study.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/base_student', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 15:01:21', 1386); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (305, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"student\",\"className\":\"BaseStudent\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"ID\",\"columnId\":1088,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-10-24 15:52:25\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"updateTime\":\"2025-11-05 15:01:20\",\"usableColumn\":false},{\"capJavaField\":\"Code\",\"columnComment\":\"学号\",\"columnId\":1275,\"columnName\":\"code\",\"columnType\":\"varchar(255)\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"code\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1276,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"DeptId\",\"columnComment\":\"班级ID\",\"columnId\":1277,\"columnName\":\"dept_id\",\"columnType\":\"bigint\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"deptId\",\"javaType\":\"', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-modules\\study-gen\\target\\classes\\mapper\\generator\\GenTableColumnMapper.xml]\r\n### The error may involve com.study.gen.mapper.GenTableColumnMapper.updateGenTableColumn-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update gen_table_column SET column_comment = ?, java_type = ?, java_field = ?, is_insert = ?, is_edit = ?, is_list = ?, is_query = ?, query_type = ?, html_type = ?, dict_type = ?, sort = ?, update_by = ?, update_time = sysdate() where column_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\n; Data truncation: Data too long for column \'is_query\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1', '2025-11-05 15:02:21', 837); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (306, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"student\",\"className\":\"BaseStudent\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"ID\",\"columnId\":1088,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-10-24 15:52:25\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"updateTime\":\"2025-11-05 15:01:20\",\"usableColumn\":false},{\"capJavaField\":\"Code\",\"columnComment\":\"学号\",\"columnId\":1275,\"columnName\":\"code\",\"columnType\":\"varchar(255)\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"code\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1276,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"DeptId\",\"columnComment\":\"班级ID\",\"columnId\":1277,\"columnName\":\"dept_id\",\"columnType\":\"bigint\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"deptId\",\"javaType\":\"', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-modules\\study-gen\\target\\classes\\mapper\\generator\\GenTableColumnMapper.xml]\r\n### The error may involve com.study.gen.mapper.GenTableColumnMapper.updateGenTableColumn-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update gen_table_column SET column_comment = ?, java_type = ?, java_field = ?, is_insert = ?, is_edit = ?, is_list = ?, is_query = ?, query_type = ?, html_type = ?, dict_type = ?, sort = ?, update_by = ?, update_time = sysdate() where column_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\n; Data truncation: Data too long for column \'is_query\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1', '2025-11-05 15:02:27', 719); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (307, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"student\",\"className\":\"BaseStudent\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"ID\",\"columnId\":1088,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-10-24 15:52:25\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"updateTime\":\"2025-11-05 15:01:20\",\"usableColumn\":false},{\"capJavaField\":\"Code\",\"columnComment\":\"学号\",\"columnId\":1275,\"columnName\":\"code\",\"columnType\":\"varchar(255)\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"code\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1276,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"DeptId\",\"columnComment\":\"班级ID\",\"columnId\":1277,\"columnName\":\"dept_id\",\"columnType\":\"bigint\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"deptId\",\"javaType\":\"', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-modules\\study-gen\\target\\classes\\mapper\\generator\\GenTableColumnMapper.xml]\r\n### The error may involve com.study.gen.mapper.GenTableColumnMapper.updateGenTableColumn-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update gen_table_column SET column_comment = ?, java_type = ?, java_field = ?, is_insert = ?, is_edit = ?, is_list = ?, is_query = ?, query_type = ?, html_type = ?, dict_type = ?, sort = ?, update_by = ?, update_time = sysdate() where column_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\n; Data truncation: Data too long for column \'is_query\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1', '2025-11-05 15:02:38', 669); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (308, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"student\",\"className\":\"BaseStudent\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"ID\",\"columnId\":1088,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-10-24 15:52:25\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"updateTime\":\"2025-11-05 15:01:20\",\"usableColumn\":false},{\"capJavaField\":\"Code\",\"columnComment\":\"学号\",\"columnId\":1275,\"columnName\":\"code\",\"columnType\":\"varchar(255)\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"code\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1276,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":75,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"DeptId\",\"columnComment\":\"班级ID\",\"columnId\":1277,\"columnName\":\"dept_id\",\"columnType\":\"bigint\",\"createBy\":\"\",\"createTime\":\"2025-11-05 15:01:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"deptId\",\"javaType\":\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 15:03:04', 1263); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (309, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_student\"}', NULL, 0, NULL, '2025-11-05 15:03:19', 354); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (310, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 15:30:16\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 15:30:16\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"sd1759803873_2_20251105140728A011.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":832000,\\\"duration\\\":5.066667,\\\"source\\\":\\\"本地上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 15:30:16\"},{\"chapterId\":42,\"chapterType\":11,\"content\":\"\",\"id\":20,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 15:30:16\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-05 15:30:17', 350); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (311, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 16:31:00\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 16:31:01\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 16:31:01\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"\",\"createTime\":\"2025-11-05 16:31:01\",\"id\":22,\"params\":{},\"schoolId\":1},{\"chapterId\":42,\"chapterType\":11,\"content\":\"\",\"id\":20,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 16:31:01\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-05 16:31:02', 692); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (312, 1, '学科设置', 2, 'com.study.resource.controller.BaseResourceSubjectController.edit()', 'PUT', 1, 'admin', NULL, '/subject', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 18:33:40\",\"createUserName\":\"admin\",\"iconPath\":\"/statics/2025/11/04/logo3_20251104183338A002.png\",\"id\":2,\"isDel\":0,\"name\":\"经济学\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-05 17:19:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 17:19:55', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (313, 1, '资源分类设置', 1, 'com.study.resource.controller.BaseResourceCategoryController.add()', 'POST', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 17:19:44\",\"description\":\"\",\"iconPath\":\"/statics/2025/11/05/logo3_20251105171943A001.png\",\"id\":6,\"name\":\"社会主义核心价值观\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 17:20:03', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (314, 1, '资源分类设置', 2, 'com.study.resource.controller.BaseResourceCategoryController.edit()', 'PUT', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 10:01:38\",\"createUserName\":\"admin\",\"description\":\"111\",\"iconPath\":\"/statics/2025/11/04/logo2_20251104100134A002.png\",\"id\":5,\"isDel\":0,\"name\":\"思想政治\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-05 17:19:27\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 17:20:06', 159); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (315, 1, '学科设置', 1, 'com.study.resource.controller.BaseResourceSubjectController.add()', 'POST', 1, 'admin', NULL, '/subject', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 17:20:09\",\"iconPath\":\"/statics/2025/11/05/logo4_20251105172007A002.png\",\"id\":3,\"name\":\"法学\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 17:20:09', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (316, 1, '学科设置', 1, 'com.study.resource.controller.BaseResourceSubjectController.add()', 'POST', 1, 'admin', NULL, '/subject', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 17:20:21\",\"iconPath\":\"/statics/2025/11/05/logo2_20251105172020A003.png\",\"id\":4,\"name\":\"教育学\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 17:20:21', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (317, 1, '学科设置', 1, 'com.study.resource.controller.BaseResourceSubjectController.add()', 'POST', 1, 'admin', NULL, '/subject', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 17:20:35\",\"iconPath\":\"/statics/2025/11/05/logo1_20251105172034A004.png\",\"id\":5,\"name\":\"文学\",\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 17:20:35', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (318, 1, '学科设置', 2, 'com.study.resource.controller.BaseResourceSubjectController.edit()', 'PUT', 1, 'admin', NULL, '/subject', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 17:53:15\",\"createUserName\":\"admin\",\"iconPath\":\"/statics/2025/11/04/logo1_20251104175306A001.png\",\"id\":1,\"isDel\":0,\"name\":\" 哲学\",\"params\":{},\"resourceCount\":1,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-05 17:23:56\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-05 17:23:56', 54); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (319, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 17:34:04\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 17:34:04\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 17:34:04\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":1,\\\"name\\\":\\\"Python编程入门教程.pdf\\\",\\\"size\\\":2621440,\\\"type\\\":\\\"PDF\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-15\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pdf\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 17:34:04\"},{\"chapterId\":42,\"chapterType\":11,\"content\":\"\",\"id\":20,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 17:34:04\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-05 17:34:04', 343); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (320, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 18:10:50\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 18:10:50\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 18:10:50\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 18:10:50\"},{\"chapterId\":42,\"chapterType\":11,\"content\":\"\",\"id\":20,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-05 18:10:50\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-05 18:10:50', 363); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (321, 2, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-06 10:18:32\",\"id\":27,\"isCurrent\":1,\"isDel\":0,\"isSemester\":0,\"name\":\"2025\",\"params\":{},\"schoolId\":2,\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 10:18:32', 376); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (322, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:48:35\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:48:35\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:48:35\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:48:35\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-06 10:48:35\",\"id\":23,\"params\":{},\"schoolId\":1},{\"chapterId\":42,\"chapterType\":11,\"content\":\"\",\"id\":20,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:48:35\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 10:48:36', 462); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (323, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:50:35\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:50:35\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:50:35\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:50:35\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景测试_20251106105030A004/index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:50:35\"},{\"chapterId\":42,\"chapterType\":11,\"content\":\"\",\"id\":20,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 10:50:35\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 10:50:35', 392); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (324, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:27:22\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:27:22\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:27:22\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:27:22\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景测试_20251106112615A007/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:27:22\"},{\"chapterId\":42,\"chapterType\":11,\"content\":\"\",\"id\":20,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:27:22\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 11:27:22', 460); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (325, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:29:15\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:29:15\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:29:15\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:29:15\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:29:15\"},{\"chapterId\":42,\"chapterType\":11,\"content\":\"\",\"id\":20,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:29:15\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 11:29:15', 424); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (326, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:49:05\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:49:05\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:49:05\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:49:05\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:49:05\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"createTime\":\"2025-11-06 11:49:05\",\"id\":24,\"params\":{},\"schoolId\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 11:49:06', 467); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (327, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:51:07\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:51:07\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:51:07\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:51:07\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 11:51:07\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"展馆-思想道德与法治-第二章.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/展馆-思想道德与法治-第二章_20251106114930A011/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"createTime\":\"2025-11-06 11:51:07\",\"id\":2', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 11:51:07', 463); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (328, 1, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"code\":\"2015112\",\"createTime\":\"2025-11-06 13:44:17\",\"deptAncestors\":[\"1\",\"2\",\"4\",\"6\"],\"deptId\":6,\"id\":1,\"params\":{},\"phonenumber\":\"18189138536\",\"schId\":1,\"sex\":\"0\",\"userName\":\"姜玉琦\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 13:44:17', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (329, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:02:43\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:02:43\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:02:43\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:02:43\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:02:43\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:02:43', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 14:02:44', 533); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (330, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:15:47\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:15:47\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:15:48\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:15:48\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:15:48\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:15:48', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 14:15:48', 571); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (331, 1, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"code\":\"2013442\",\"createTime\":\"2025-11-06 14:34:35\",\"deptAncestors\":[\"1\",\"3\",\"7\",\"8\"],\"deptId\":8,\"id\":2,\"params\":{},\"phonenumber\":\"13121312312\",\"schId\":1,\"sex\":\"0\",\"userName\":\"王武\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 14:34:35', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (332, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:41:53\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:41:53\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:41:53\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:41:54\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:41:54\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 14:41:54', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 14:41:54', 551); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (333, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"121\",\"avatar\":\"\",\"code\":\"2015112\",\"createBy\":\"admin\",\"createTime\":\"2025-11-06 13:44:17\",\"delFlag\":\"0\",\"deptAncestors\":[\"1\",\"2\",\"4\",\"5\"],\"deptId\":5,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育,2021级,思政2101班\\\",\\\"deptIds\\\":\\\"1,2,4,5\\\"}\",\"email\":\"123@前q.cpm\",\"id\":1,\"joinTime\":\"2025-11-05\",\"loginIp\":\"\",\"params\":{},\"phoneNumber\":\"18189138536\",\"remark\":\"345\",\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-06 15:27:31\",\"userCardId\":\"00\",\"userName\":\"姜玉琦\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 15:27:31', 263); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (334, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"121\",\"avatar\":\"\",\"code\":\"2015112\",\"createBy\":\"admin\",\"createTime\":\"2025-11-06 13:44:17\",\"delFlag\":\"0\",\"deptAncestors\":[\"1\",\"2\",\"4\",\"5\"],\"deptId\":5,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育,2021级,思政2101班\\\",\\\"deptIds\\\":\\\"1,2,4,5\\\"}\",\"email\":\"123@前q.cpm\",\"id\":1,\"joinTime\":\"2025-11-05\",\"loginIp\":\"\",\"params\":{},\"phoneNumber\":\"18189138536\",\"remark\":\"345\",\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-06 15:32:16\",\"userCardId\":\"00\",\"userName\":\"姜玉琦\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 15:32:16', 163); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (335, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"121\",\"avatar\":\"\",\"code\":\"2015112\",\"createBy\":\"admin\",\"createTime\":\"2025-11-06 13:44:17\",\"delFlag\":\"0\",\"deptAncestors\":[\"1\",\"2\",\"4\",\"5\"],\"deptId\":5,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育,2021级,思政2101班\\\",\\\"deptIds\\\":\\\"1,2,4,5\\\"}\",\"email\":\"123@前q.cpm\",\"id\":1,\"joinTime\":\"2025-11-05\",\"loginIp\":\"\",\"params\":{},\"phoneNumber\":\"18189138536\",\"remark\":\"345\",\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-06 15:32:35\",\"userCardId\":\"00\",\"userName\":\"姜玉琦\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 15:32:35', 177); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (336, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"authorName\":\"admin\",\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 15:35:30\",\"description\":\"

12212

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":6,\"name\":\"1233\",\"params\":{},\"source\":\"\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"authorName\":\"admin\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 15:35:30\",\"description\":\"

12212

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":6,\"name\":\"1233\",\"params\":{},\"state\":1,\"viewCount\":0}}', 0, NULL, '2025-11-06 15:35:43', 19294); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (337, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"authorName\":\"admin\",\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 15:42:33\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":7,\"name\":\"test\",\"params\":{},\"source\":\"\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"authorName\":\"admin\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 15:42:33\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":7,\"name\":\"test\",\"params\":{},\"state\":1,\"viewCount\":0}}', 0, NULL, '2025-11-06 15:42:33', 21190); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (338, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"12131\",\"avatar\":\"\",\"code\":\"2013442\",\"createBy\":\"\",\"createTime\":\"2025-11-06 14:34:35\",\"delFlag\":\"0\",\"deptAncestors\":[\"1\",\"2\",\"4\",\"5\"],\"deptId\":5,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育,2021级,思政2101班\\\",\\\"deptIds\\\":\\\"1,2,4,5\\\"}\",\"email\":\"12@qq.com\",\"id\":2,\"joinTime\":\"2025-11-07\",\"loginIp\":\"\",\"params\":{},\"phoneNumber\":\"13121312312\",\"remark\":\"42345345\",\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-06 15:44:17\",\"userCardId\":\"00\",\"userName\":\"王武\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 15:44:17', 167); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (339, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorName\":\"admin\",\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 15:49:27\",\"description\":\"

1111

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":8,\"name\":\"test1\",\"params\":{},\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorName\":\"admin\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 15:49:27\",\"description\":\"

1111

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":8,\"name\":\"test1\",\"params\":{},\"schId\":2,\"source\":\"1\",\"state\":1,\"viewCount\":0}}', 0, NULL, '2025-11-06 15:49:27', 7072); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (340, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 15:50:46\",\"description\":\"

222

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":9,\"name\":\"test111\",\"params\":{},\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"2,3\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-06 15:50:46\",\"description\":\"

222

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":9,\"name\":\"test111\",\"params\":{},\"schId\":2,\"source\":\"1\",\"state\":1,\"tagIds\":\"2,3\",\"viewCount\":0}}', 0, NULL, '2025-11-06 15:50:46', 3335); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (341, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 15:53:30\",\"description\":\"

222

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":10,\"name\":\"test111\",\"params\":{},\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"2,3\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-06 15:53:30\",\"description\":\"

222

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":10,\"name\":\"test111\",\"params\":{},\"schId\":2,\"source\":\"1\",\"state\":1,\"tagIds\":\"2,3\",\"viewCount\":0}}', 0, NULL, '2025-11-06 15:53:30', 99); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (342, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":1,\"content\":\"

1111176756767


\",\"id\":13,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 15:56:36\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"

11267

\",\"id\":14,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 15:56:36\"},{\"chapterId\":44,\"chapterType\":10,\"content\":\"{\\\"name\\\":null,\\\"url\\\":\\\"/statics/3dModel/2025/11/06/d2z-ok_20251106155613A001.fbx\\\",\\\"originalName\\\":\\\"d2z-ok_20251106155613A001.fbx\\\",\\\"size\\\":157632416,\\\"type\\\":\\\"FBX模型\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"createTime\":\"2025-11-06 15:56:36\",\"id\":27,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":11,\"content\":\"\",\"id\":19,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 15:56:36\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 15:56:36', 294); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (343, 1, '学生信息', 3, 'com.study.system.controller.BaseStudentController.remove()', 'DELETE', 1, 'admin', NULL, '/student/1,2', '127.0.0.1', '', '[1,2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 16:08:15', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (344, 1, '学生信息', 3, 'com.study.system.controller.BaseStudentController.remove()', 'DELETE', 1, 'admin', NULL, '/student/2', '127.0.0.1', '', '[2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 16:08:37', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (345, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:13:09\",\"description\":\"

aaaaaaaaaaaaaaaaaaaaaaa

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161303A001.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161303A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416783615,\\\"status\\\":\\\"success\\\"}]\",\"id\":11,\"name\":\"t1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"subjectId\":1,\"tagIds\":\"4,3,5,6\",\"typeId\":1,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:13:09\",\"description\":\"

aaaaaaaaaaaaaaaaaaaaaaa

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161303A001.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161303A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416783615,\\\"status\\\":\\\"success\\\"}]\",\"id\":11,\"name\":\"t1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"state\":1,\"subjectId\":1,\"tagIds\":\"4,3,5,6\",\"typeId\":1,\"viewCount\":0}}', 0, NULL, '2025-11-06 16:13:09', 68); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (346, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"/statics/null/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:29\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"\",\"typeId\":1,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"/statics/null/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:29\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"stage\":1,\"state\":1,\"subjectId\":1,\"typeId\":1,\"viewCount\":0}}', 0, NULL, '2025-11-06 16:17:29', 97); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (347, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"/statics/null/2025/11/06/3d_20251106161638A003.jpg\",\"description\":\"

asdfasdfasdf

\",\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 16:18:00\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"/statics/null/2025/11/06/3d_20251106161638A003.jpg\",\"description\":\"

asdfasdfasdf

\",\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 16:18:00\"}}', 0, NULL, '2025-11-06 16:18:00', 72); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (348, 1, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"2\",\"code\":\"2041231\",\"createBy\":\"admin\",\"createTime\":\"2025-11-06 16:28:08\",\"deptAncestors\":[\"1\",\"3\",\"7\",\"9\"],\"deptId\":9,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育2,2026级,思政2602班\\\",\\\"deptIds\\\":\\\"1,3,7,9\\\"}\",\"email\":\"1\",\"id\":3,\"joinTime\":\"2025-11-04\",\"params\":{},\"phoneNumber\":\"18723122132\",\"remark\":\"3\",\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userName\":\"龙小孟\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 16:28:09', 237); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (349, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"2\",\"avatar\":\"\",\"code\":\"2041231\",\"createBy\":\"admin\",\"createTime\":\"2025-11-06 16:28:09\",\"delFlag\":\"0\",\"deptAncestors\":[\"1\",\"3\",\"7\",\"9\"],\"deptId\":9,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育2,2026级,思政2602班\\\",\\\"deptIds\\\":\\\"1,3,7,9\\\"}\",\"email\":\"1@qq.com\",\"id\":3,\"joinTime\":\"2025-11-04\",\"loginIp\":\"\",\"params\":{},\"phoneNumber\":\"18723122132\",\"remark\":\"3\",\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-06 16:28:25\",\"userCardId\":\"00\",\"userName\":\"龙小孟\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-06 16:28:25', 170); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (350, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:57:37\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":13,\"name\":\"\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:57:37\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":13,\"params\":{},\"schId\":1,\"state\":1,\"viewCount\":0}}', 0, NULL, '2025-11-06 16:57:37', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (351, 1, '参数管理', 5, 'com.study.system.controller.SysConfigController.export()', 'POST', 1, 'admin', NULL, '/config/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-06 17:03:31', 1283); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (352, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 17:05:00\",\"description\":\"

走向帝制,返回原始

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":14,\"name\":\"test1\",\"params\":{},\"premiumTypes\":\"\",\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"\",\"typeId\":6,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-06 17:05:00\",\"description\":\"

走向帝制,返回原始

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":14,\"name\":\"test1\",\"params\":{},\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"typeId\":6,\"viewCount\":0}}', 0, NULL, '2025-11-06 17:05:00', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (353, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"description\":\"

走向帝制,返回原始

\",\"fileConfig\":\"[]\",\"id\":14,\"name\":\"test1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":6,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 17:05:46\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"description\":\"

走向帝制,返回原始

\",\"fileConfig\":\"[]\",\"id\":14,\"name\":\"test1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":6,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 17:05:46\"}}', 0, NULL, '2025-11-06 17:05:46', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (354, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"description\":\"

走向帝制,返回原始

\",\"fileConfig\":\"[]\",\"id\":14,\"name\":\"test1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":6,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 17:06:05\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"description\":\"

走向帝制,返回原始

\",\"fileConfig\":\"[]\",\"id\":14,\"name\":\"test1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":6,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 17:06:05\"}}', 0, NULL, '2025-11-06 17:06:05', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (355, 1, '学生信息', 5, 'com.study.system.controller.BaseStudentController.export()', 'POST', 1, 'admin', NULL, '/student/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-06 17:08:07', 1109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (356, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 17:47:47\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 17:47:47\",\"viewCount\":0}}', 0, NULL, '2025-11-06 17:47:48', 703); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (357, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":45,\"chapterType\":1,\"content\":\"

ssd的撒旦发射点

\",\"id\":15,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 17:57:17\"},{\"chapterId\":45,\"chapterType\":2,\"content\":\"

12

\",\"id\":16,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 17:57:17\"},{\"chapterId\":45,\"chapterType\":10,\"content\":\"{\\\"name\\\":null,\\\"url\\\":\\\"/statics/3dModel/2025/11/06/IronMan_20251106175711A004.obj\\\",\\\"originalName\\\":\\\"IronMan_20251106175711A004.obj\\\",\\\"size\\\":16581665,\\\"type\\\":\\\"OBJ模型\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"createTime\":\"2025-11-06 17:57:17\",\"id\":28,\"params\":{},\"schoolId\":1},{\"chapterId\":45,\"chapterType\":11,\"content\":\"\",\"id\":18,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 17:57:17\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 17:57:18', 272); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (358, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":45,\"chapterType\":1,\"content\":\"

ssd的撒旦发射点

\",\"id\":15,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 17:58:52\"},{\"chapterId\":45,\"chapterType\":2,\"content\":\"

12

\",\"id\":16,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 17:58:52\"},{\"chapterId\":45,\"chapterType\":10,\"content\":\"{\\\"name\\\":null,\\\"url\\\":\\\"/statics/3dModel/2025/11/06/IronMan_20251106175711A004.obj\\\",\\\"originalName\\\":\\\"IronMan_20251106175711A004.obj\\\",\\\"size\\\":16581665,\\\"type\\\":\\\"OBJ模型\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"createTime\":\"2025-11-06 17:58:52\",\"id\":29,\"params\":{},\"schoolId\":1},{\"chapterId\":45,\"chapterType\":11,\"content\":\"\",\"id\":18,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 17:58:52\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 17:58:52', 295); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (359, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":1,\"content\":\"

1111176756767


\",\"id\":13,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 17:59:22\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"

11267

\",\"id\":14,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 17:59:22\"},{\"chapterId\":44,\"chapterType\":10,\"content\":\"{\\\"name\\\":null,\\\"url\\\":\\\"/statics/3dModel/2025/11/06/d2z-ok_20251106155613A001.fbx\\\",\\\"originalName\\\":\\\"d2z-ok_20251106155613A001.fbx\\\",\\\"size\\\":157632416,\\\"type\\\":\\\"FBX模型\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":27,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 17:59:22\"},{\"chapterId\":44,\"chapterType\":11,\"content\":\"\",\"id\":19,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 17:59:22\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 17:59:23', 255); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (360, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 18:03:12\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 18:03:12\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 18:03:12\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 18:03:12\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 18:03:12\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-06 18:03:12', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-06 18:03:12', 714); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (361, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 18:06:32\",\"description\":\"

111

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":15,\"name\":\"111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"2\",\"typeId\":6,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-06 18:06:32\",\"description\":\"

111

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":15,\"name\":\"111\",\"params\":{},\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"2\",\"typeId\":6,\"viewCount\":0}}', 0, NULL, '2025-11-06 18:06:32', 66); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (362, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":3,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:14:32\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":3,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:14:32\",\"viewCount\":0}}', 0, NULL, '2025-11-06 18:14:32', 67); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (363, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":6,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:14:55\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":6,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:14:55\",\"viewCount\":0}}', 0, NULL, '2025-11-06 18:14:55', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (364, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:18:20\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:18:20\",\"viewCount\":0}}', 0, NULL, '2025-11-06 18:18:20', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (365, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:35:31\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161625A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416985344,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:35:31\",\"viewCount\":0}}', 0, NULL, '2025-11-06 18:35:32', 68); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (366, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:39:38\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

asdfasdfasdf

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:39:38\",\"viewCount\":0}}', 0, NULL, '2025-11-06 18:39:38', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (367, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/01/logo4_20251101101932A006.png\",\"createTime\":\"2025-11-05 16:59:04\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲

\",\"downloadCount\":12,\"fileConfig\":\"[]\",\"id\":1,\"isDel\":0,\"name\":\"新时代中国特色社会主义思想概论课件\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"state\":1,\"subjectId\":1,\"tagIds\":\"1,2,3,4,5\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:59:13\",\"viewCount\":12}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/01/logo4_20251101101932A006.png\",\"createTime\":\"2025-11-05 16:59:04\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲

\",\"downloadCount\":12,\"fileConfig\":\"[]\",\"id\":1,\"isDel\":0,\"name\":\"新时代中国特色社会主义思想概论课件\",\"params\":{},\"schId\":1,\"source\":\"1\",\"state\":1,\"subjectId\":1,\"tagIds\":\"1,2,3,4,5\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:59:13\",\"viewCount\":12}}', 0, NULL, '2025-11-06 18:59:13', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (368, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/01/logo4_20251101101932A006.png\",\"createTime\":\"2025-11-05 16:59:04\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲

\",\"downloadCount\":12,\"fileConfig\":\"[]\",\"id\":1,\"isDel\":0,\"name\":\"新时代中国特色社会主义思想概论课件\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"state\":1,\"subjectId\":1,\"tagIds\":\"1,2,3,4,5\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:59:25\",\"viewCount\":12}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/01/logo4_20251101101932A006.png\",\"createTime\":\"2025-11-05 16:59:04\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲

\",\"downloadCount\":12,\"fileConfig\":\"[]\",\"id\":1,\"isDel\":0,\"name\":\"新时代中国特色社会主义思想概论课件\",\"params\":{},\"schId\":1,\"source\":\"1\",\"state\":1,\"subjectId\":1,\"tagIds\":\"1,2,3,4,5\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-06 18:59:25\",\"viewCount\":12}}', 0, NULL, '2025-11-06 18:59:25', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (369, 1, '资源管理', 3, 'com.study.resource.controller.BaseResourceController.remove()', 'DELETE', 1, 'admin', NULL, '/resource/2', '127.0.0.1', '', '[2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 09:38:21', 80); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (370, 1, '资源管理', 3, 'com.study.resource.controller.BaseResourceController.remove()', 'DELETE', 1, 'admin', NULL, '/resource/1', '127.0.0.1', '', '[1]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 09:42:26', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (371, 2, '资源管理', 3, 'com.study.resource.controller.BaseResourceController.remove()', 'DELETE', 1, 'admin', NULL, '/resource/12', '127.0.0.1', '', '[12]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 09:44:48', 58); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (372, 2, '资源管理', 3, 'com.study.resource.controller.BaseResourceController.remove()', 'DELETE', 1, 'admin', NULL, '/resource/15', '127.0.0.1', '', '[15]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 09:46:43', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (373, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:17:06\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:17:07\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:17:07\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:17:07\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:17:07\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:17:07', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 10:17:12', 1228); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (374, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"asdfasdfasdf\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 10:20:59\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"asdfasdfasdf\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 10:20:59\",\"viewCount\":0}}', 0, NULL, '2025-11-07 10:21:00', 182); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (375, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"asdfasdfasdf\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":0,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 10:25:26\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"asdfasdfasdf\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":0,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 10:25:26\",\"viewCount\":0}}', 0, NULL, '2025-11-07 10:25:26', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (376, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"asdfasdfasdf\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 10:25:35\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"asdfasdfasdf\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 10:25:35\",\"viewCount\":0}}', 0, NULL, '2025-11-07 10:25:35', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (377, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:35:05\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:35:05\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:35:05\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:35:05\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:35:05\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:35:05', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 10:35:10', 748); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (378, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:37:04\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:37:04\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:37:04\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:37:04\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:37:04\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 10:37:04', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 10:37:09', 709); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (379, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 8 条数据格式不正确,错误如下:
1、账号 18189138536 的所属班级编码不正确
2、账号 18189138536 导入失败:null
3、账号 18189138537 的所属班级编码不正确
4、账号 18189138537 导入失败:null
5、账号 18189138538 的所属班级编码不正确
6、账号 18189138538 导入失败:null
7、账号 18189138539 的所属班级编码不正确
8、账号 18189138539 导入失败:null', '2025-11-07 10:49:22', 1894); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (380, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 8 条数据格式不正确,错误如下:
1、账号 18189138536 的所属班级编码不正确
2、账号 18189138536 导入失败:null
3、账号 18189138537 的所属班级编码不正确
4、账号 18189138537 导入失败:null
5、账号 18189138538 的所属班级编码不正确
6、账号 18189138538 导入失败:null
7、账号 18189138539 的所属班级编码不正确
8、账号 18189138539 导入失败:null', '2025-11-07 10:50:03', 592); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (381, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 8 条数据格式不正确,错误如下:
1、账号 18189138536 的所属班级编码不正确
2、账号 18189138536 导入失败:null
3、账号 18189138537 的所属班级编码不正确
4、账号 18189138537 导入失败:null
5、账号 18189138538 的所属班级编码不正确
6、账号 18189138538 导入失败:null
7、账号 18189138539 的所属班级编码不正确
8、账号 18189138539 导入失败:null', '2025-11-07 10:51:25', 645); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (382, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 8 条数据格式不正确,错误如下:
1、账号 18189138536 的所属班级编码不正确
2、账号 18189138536 导入失败:null
3、账号 18189138537 的所属班级编码不正确
4、账号 18189138537 导入失败:null
5、账号 18189138538 的所属班级编码不正确
6、账号 18189138538 导入失败:null
7、账号 18189138539 的所属班级编码不正确
8、账号 18189138539 导入失败:null', '2025-11-07 10:53:40', 607); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (383, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 8 条数据格式不正确,错误如下:
1、账号 18189138536 的所属班级编码不正确
2、账号 18189138536 导入失败:null
3、账号 18189138537 的所属班级编码不正确
4、账号 18189138537 导入失败:null
5、账号 18189138538 的所属班级编码不正确
6、账号 18189138538 导入失败:null
7、账号 18189138539 的所属班级编码不正确
8、账号 18189138539 导入失败:null', '2025-11-07 11:20:27', 558); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (384, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 4 条数据格式不正确,错误如下:
1、账号 18189138536 的所属班级编码不正确
2、账号 18189138537 的所属班级编码不正确
3、账号 18189138538 的所属班级编码不正确
4、账号 18189138539 的所属班级编码不正确', '2025-11-07 11:26:35', 99651); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (385, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 4 条数据格式不正确,错误如下:
1、账号 18189138536 导入失败:\r\n### Error updating database. Cause: java.sql.SQLException: Field \'sch_id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\BaseStudentMapper.xml]\r\n### The error may involve com.study.system.mapper.BaseStudentMapper.insertBaseStudent-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_student ( code, user_name, email, phone_number, address, sex, status, join_time, remark ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'sch_id\' doesn\'t have a default value\n; Field \'sch_id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'sch_id\' doesn\'t have a default value
2、账号 18189138537 导入失败:\r\n### Error updating database. Cause: java.sql.SQLException: Field \'sch_id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\BaseStudentMapper.xml]\r\n### The error may involve com.study.system.mapper.BaseStudentMapper.insertBaseStudent-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_student ( code, dept_id, dept_info, user_name, email, phone_numb', '2025-11-07 11:29:00', 2079); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (386, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、账号 18189138536 导入失败:\r\n### Error updating database. Cause: java.sql.SQLException: Field \'dept_id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\BaseStudentMapper.xml]\r\n### The error may involve com.study.system.mapper.BaseStudentMapper.insertBaseStudent-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_student ( code, sch_id, user_name, email, phone_number, address, sex, status, join_time, remark ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'dept_id\' doesn\'t have a default value\n; Field \'dept_id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'dept_id\' doesn\'t have a default value', '2025-11-07 11:30:46', 2163); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (387, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 17:05:00\",\"description\":\"走向帝制,返回原始\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"id\":14,\"isDel\":0,\"name\":\"test1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 11:31:44\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-06 17:05:00\",\"description\":\"走向帝制,返回原始\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"id\":14,\"isDel\":0,\"name\":\"test1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 11:31:44\",\"viewCount\":0}}', 0, NULL, '2025-11-07 11:31:44', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (388, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:32:19\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:32:19\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:32:19\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:32:19\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:32:19\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:32:19', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 11:32:20', 719); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (389, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 4 条,数据如下:
1、账号 18189138536 更新成功
2、账号 18189138537 更新成功
3、账号 18189138538 更新成功
4、账号 18189138539 更新成功\",\"code\":200}', 0, NULL, '2025-11-07 11:33:52', 1837); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (390, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"三桥\",\"avatar\":\"\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCADIAMgDAREAAhEBAxEB/8QAHAABAAIDAQEBAAAAAAAAAAAAAAkLBQYHCAoD/8QARRAAAQMDAgMGAQUJEQAAAAAAAAECAwQFBgcRCBIhCQoTFCIxFRYjMjl1NjhBcZS0tcHTGBkkJzRRVWFiY2R2gZGSwtT/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8Ar/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAX8aL/v8ArRAAAAAAAAAAAAAAAAAAAAAAAAABMnwS9iBxl8eGllNq7otidddMSq5qqCCtht3mo5H0lR5aZEelbCu7ZOi+gDt+u3dxe0F0A0wyTVXMcEuTMdxenSquL1tKQoyFebdyyOuL0RGo1VX0r7dOoEAlVTy0dVU0kzVbNSzzU8rV92ywSOikavVeqOaqe6/jA/AAAAAAAAAAAAAAAAAAAAAAB+oAAAtVO6V/Vt4x9rZL+nFAl77XDpwDa6pvuvwHr/P1ZP7gUpeTfdHkH23dvz+oAwgAAAAAAAAAAAAAAAAAAAAAADuWkvDdrPrlHXy6XYPdstZbI2y1q22F83gRulWFrn8jXbIsqKzrt1A7P+92cYnT+JPK+v8Agp/2QFmN3XvR/UTRvs+MaxvUbG67GL0255C91DXxujma2S8rIxVY5Gqm7eqbp1TqBKt2oeIZDnXBLrRjOLW6a7Xu42NzKOhgTeWdzY51VrE2XdeqAU/mR9nfxhS5DfpGaKZU5r7zdHtclFNsrX1s7mqnzXVFRUX/AF6ga/U9nrxfUlNUVlRotlUdPSwS1M8i0U+zIYI3SyvX5rfZrGucv9SAeP7xa', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 11:34:28', 347); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (391, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"三桥\",\"avatar\":\"/statics/2025/11/07/file_20251107113603A001.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCADIAMgDAREAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAABwQFBggJCgMLAgEA/8QAPhAAAgICAQMDAwIFAQYFAwUAAQIDBAURBgcSIQATMQgUIkFRCRUjMmFxFiRCgZGxF1Kh0fDB4fElNGJy0v/EAB0BAAEFAQEBAQAAAAAAAAAAAAUAAwQGBwIBCAn/xABGEQACAQIFAQUFBgMHAwMDBQABAhEDBAAFEiExQQYTIlFhBzJxgZEUobHB0fAjQlIIFRYkYuHxM1NyF4KyJUOSNFSDoqP/2gAMAwEAAhEDEQA/AOeDLSz5DK5HJ2WMlnIXbd+dm2B71ueSxKSSW8l5GPydf5Pk0wHQqat9OiY5MESQDHHP443C3pslOgDBKpSBieQFHlxOKD81rzJyDKWZFJWa/YZZFBfY91hpu4duwQdgDf7lRrdgoPNMbGJaZAEgny3EQfy9cZxeD/N3B2jvGAI6wzb+o35w/wDB+c2+O3IUZ+6ElEIdu1JUHha8p3oBdn7ecq7QElX3ASEjXNuhGqmkAA6hLSZIiBJ+m2JmU3ptqgWrurNGoAeAdCeJj1B+fToE/hsfxEMt9NmYscXzNu5n+hHN78P+1fHmYzXeGZqb2K7cxwMEcdiwtqtFHBDm8PXKw5vGwxGNGv0sZNGFddLMIIAYgc+Z88S887O08/oC8snQX6LCAtAroqz3VSRCsBHdMDAMq23HV5jczgeW0MZyjjeUpZ3A56GDLYbNYuxFboZTHXiJq1ynahZopoJ0fuV0bXyv4kEDnGSNTqUa5pVUanVp1AtSm4KujA7hlO4P3EbiQZwU8pxyPKYqtGmobNeCKSjOB+cMywqBsa2Y2PiRAfyUkDRGhNT/AKaxzGCdJ1Gx290bx+uMgvrv6I835dn+KfUJ0JmkwH1T/TndGQ4tJVlgReXYCsY8hmeCZJZ4pYclSylO7kv5JXtsMdYmyeWxV3dLO25Vdta/d1yGAIggk7R/4xyYJ56x0nEymyE91UCNTcQQxGxM6WB2MgkkGR6el1vpi', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 11:36:03', 666); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (392, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"三桥\",\"avatar\":\"/statics/2025/11/07/file_20251107113603A001.jpeg\",\"code\":\"201511211\",\"createBy\":\"admin::数据导入\",\"createTime\":\"2025-11-07 11:33:51\",\"delFlag\":\"0\",\"deptAncestors\":[\"1\",\"3\",\"7\",\"9\"],\"deptCode\":\"D004\",\"deptId\":9,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育2,2026级,思政2602班\\\",\\\"deptIds\\\":\\\"1,3,7,9\\\"}\",\"deptName\":\"思政2602班\",\"email\":\"704976063@qq.com\",\"id\":1,\"joinTime\":\"2025-11-05\",\"loginIp\":\"\",\"params\":{},\"phoneNumber\":\"18189138536\",\"remark\":\"测试\",\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-07 11:36:14\",\"userCardId\":\"00\",\"userName\":\"姜二琦\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 11:36:14', 795); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (393, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:52:38\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:52:38\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:52:38\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:52:38\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:52:38\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 11:52:39', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 11:52:41', 705); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (394, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"白日依山尽黄河入海流\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":2933729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1111762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 14:04:26\",\"viewCount\":232323}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"白日依山尽黄河入海流\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":2933729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1111762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 14:04:26\",\"viewCount\":232323}}', 0, NULL, '2025-11-07 14:04:26', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (395, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

白日依山尽

黄河入海流

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":2933729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1111762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 14:08:12\",\"viewCount\":232323}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

白日依山尽

黄河入海流

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":2933729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1111762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 14:08:12\",\"viewCount\":232323}}', 0, NULL, '2025-11-07 14:08:12', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (396, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":2933729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1111762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 14:10:54\",\"viewCount\":232323}', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'description\' at row 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\resource\\BaseResourceMapper.xml]\r\n### The error may involve com.study.resource.mapper.BaseResourceMapper.updateBaseResource-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update base_resource SET name = ?, author_id = ?, source = ?, source_url = ?, cover_img_path = ?, description = ?, view_count = ?, download_count = ?, file_config = ?, category_id = ?, subject_id = ?, type_id = ?, stage = ?, tag_ids = ?, premium_types = ?, approval_state = ?, state = ?, is_del = ?, sch_id = ?, create_by = ?, create_time = ?, update_by = ?, update_time = ? where id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'description\' at row 1\n; Data truncation: Data too long for column \'description\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'description\' at row 1', '2025-11-07 14:10:54', 652); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (397, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":2933729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1111762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 14:11:36\",\"viewCount\":232323}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106183610A004/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":2933729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1111762425371873,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 14:11:36\",\"viewCount\":232323}}', 0, NULL, '2025-11-07 14:11:36', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (398, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107142142A002.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107142142A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762496502695,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 14:21:45\",\"viewCount\":232323}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107142142A002.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107142142A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762496502695,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 14:21:45\",\"viewCount\":232323}}', 0, NULL, '2025-11-07 14:21:45', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (399, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 14:40:37\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 14:40:37\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 14:40:37\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 14:40:37\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 14:40:37\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 14:40:38', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 14:40:38', 804); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (400, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/07/全景-思想道德与法治-第一章-第一节_20251107151334A003/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1762499614955,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 15:14:22\",\"viewCount\":232323}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/07/全景-思想道德与法治-第一章-第一节_20251107151334A003/index.html\\\",\\\"originalName\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1762499614955,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 15:14:22\",\"viewCount\":232323}}', 0, NULL, '2025-11-07 15:14:23', 857); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (401, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 15:33:43\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 15:33:43\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":125829120,\\\"duration\\\":2700,\\\"source\\\":\\\"教师上传\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 15:33:43\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 15:33:43\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 15:33:43\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 15:33:43', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 15:33:44', 683); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (402, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/07/展馆-思想道德与法治-第二章_20251107160217A004/index.html\\\",\\\"originalName\\\":\\\"展馆-思想道德与法治-第二章.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1762502537588,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":9,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 16:02:19\",\"viewCount\":232323}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/07/展馆-思想道德与法治-第二章_20251107160217A004/index.html\\\",\\\"originalName\\\":\\\"展馆-思想道德与法治-第二章.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1762502537588,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":9,\"updateBy\":\"1\",\"updateTime\":\"2025-11-07 16:02:19\",\"viewCount\":232323}}', 0, NULL, '2025-11-07 16:02:19', 66); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (403, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,1,2\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"2022级\",\"endYear\":\"\",\"enterYear\":\"2022\",\"orderNum\":0,\"orgCode\":\"CS2022\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":2,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 16:46:00', 139); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (404, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,1,2\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"2023级\",\"endYear\":\"\",\"enterYear\":\"2023\",\"orderNum\":0,\"orgCode\":\"CS2023\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":2,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 16:46:22', 216); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (405, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,1,2\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"2024级\",\"endYear\":\"\",\"enterYear\":\"2024\",\"orderNum\":0,\"orgCode\":\"CS2024\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":2,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 16:46:33', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (406, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,1,2\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"2025级\",\"endYear\":\"\",\"enterYear\":\"2025\",\"orderNum\":0,\"orgCode\":\"CS2025\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":2,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 16:46:45', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (407, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:17:56\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:17:57\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"2\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:17:57\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"id\\\":2,\\\"name\\\":\\\"Web开发实战案例.docx\\\",\\\"size\\\":1887436.8,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"教师上传\\\",\\\"uploadTime\\\":\\\"2024-01-14\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.docx\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"size\\\":5452595.2,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"系统资源库\\\",\\\"uploadTime\\\":\\\"2024-01-13\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.pptx\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:17:57\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/全景-思想道德与法治-第一章-第一节_20251106112811A008/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:17:57\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/06/全景测试_20251106114849A010/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:17:57\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 17:18:00', 1090); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (408, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:45:17\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:45:18\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"2\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:45:18\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"1\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"sourceName\\\":\\\"系统内置\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"type\\\":\\\"pdf\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:45:', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 17:45:20', 728); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (409, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:46:21\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:46:21\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Web开发实战案例解析.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"2\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:46:21\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"type\\\":\\\"pdf\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"updateTi', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 17:46:24', 738); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (410, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:46:42\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:46:42\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 17:46:42\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"type\\\":\\\"pdf\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"upda', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 17:46:45', 715); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (411, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-07 17:55:22\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":24,\"name\":\"test\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"createBy\":\"1\",\"createTime\":\"2025-11-07 17:55:22\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":24,\"name\":\"test\",\"params\":{},\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"state\":1,\"viewCount\":0}}', 0, NULL, '2025-11-07 17:55:24', 275); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (412, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 18:26:18\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 18:26:18\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-07 18:26:18\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"type\\\":\\\"pdf\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"upda', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 18:26:21', 751); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (413, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:56:26\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:56:26\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:56:26\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 18:56:27', 703); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (414, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:57:20\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:57:20\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:57:20\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 18:57:20', 634); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (415, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:58:08\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:58:08\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:58:08\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 18:58:08', 620); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (416, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:58:40\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:58:40\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:58:40\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 18:58:41', 614); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (417, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:28\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:28\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:28\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"name\\\":\\\"中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"url\\\":\\\"/statics/2025/11/07/中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:28\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/07/全景-思想道德与法治-第一章-第一节_20251107185835A005/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:28\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/07/全景测试_20251107185802A004/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:28\"},{\"chapterId\":42,\"chapterType\":7,\"content\":\"[{\\\"url\\\":\\\"https://adzhp.cc/\\\",\\\"title\\\":\\\"adzhp.cc\\\",\\\"description\\\":\\\"adzhp.cc\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 18:59:28', 615); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (418, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:31\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:31\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:31\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"name\\\":\\\"中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"url\\\":\\\"/statics/2025/11/07/中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:31\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/07/全景-思想道德与法治-第一章-第一节_20251107185835A005/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:31\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/07/全景测试_20251107185802A004/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-07 18:59:31\"},{\"chapterId\":42,\"chapterType\":7,\"content\":\"[{\\\"url\\\":\\\"https://adzhp.cc/\\\",\\\"title\\\":\\\"adzhp.cc\\\",\\\"description\\\":\\\"adzhp.cc\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-07 18:59:31', 619); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (419, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"海量教学资料、案例、课件,满足多样化教学需求\",\"appIconPath\":\"/statics/2025/11/07/ScreenShot_2025-11-07_185849_320 拷贝_20251107190050A008.png\",\"appId\":3,\"appName\":\"教学资源库\",\"appPath\":\"/resourceSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"3\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-07 19:00:51\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 19:00:52', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (420, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"管理教师、学生信息,权限分配与账号安全1\",\"appIconPath\":\"/statics/2025/11/07/ScreenShot_2025-11-07_190116_904 拷贝_20251107190455A009.png\",\"appId\":1,\"appName\":\"用户系统\",\"appPath\":\"/userSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"1\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-07 19:04:57\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 19:04:57', 53); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (421, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"教学设计、课堂管理、教学评估一体化平台\",\"appIconPath\":\"/statics/2025/11/07/ScreenShot_2025-11-07_190220_618 拷贝_20251107190507A010.png\",\"appId\":2,\"appName\":\"思政教学系统\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":1,\"params\":{},\"remark\":\"2\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-07 19:05:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 19:05:10', 52); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (422, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"系统全局参数配置、安全设置及日志管理功能1\",\"appIconPath\":\"/statics/2025/11/07/ScreenShot_2025-11-07_190526_115 拷贝_20251107190959A011.png\",\"appId\":8,\"appName\":\"系统设置\",\"appPath\":\"/settingSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"8\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-07 19:10:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 19:10:01', 53); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (423, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/11/07/ScreenShot_2025-11-07_191017_634 拷贝_20251107191123A012.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":0,\"params\":{},\"remark\":\"6\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-07 19:11:24\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-07 19:11:24', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (424, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 09:50:33\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 09:50:33\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 09:50:33\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"name\\\":\\\"中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"url\\\":\\\"/statics/2025/11/07/中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 09:50:33\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/07/全景-思想道德与法治-第一章-第一节_20251107185835A005/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 09:50:33\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/07/全景测试_20251107185802A004/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 09:50:33\"},{\"chapterId\":42,\"chapterType\":7,\"content\":\"[{\\\"url\\\":\\\"https://adzhp.cc/\\\",\\\"title\\\":\\\"adzhp.cc\\\",\\\"description\\\":\\\"adzhp.cc\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 09:50:34', 769); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (425, 1, '用户管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"2013\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-09\",\"nickName\":\"姜大\",\"params\":{},\"phoneNumber\":\"18111111111\",\"roleId\":2,\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', NULL, 1, 'rawPassword cannot be null', '2025-11-08 10:09:45', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (426, 1, '用户管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"2013\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-09\",\"nickName\":\"姜大\",\"params\":{},\"phoneNumber\":\"18111111111\",\"roleId\":2,\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"userId\":110,\"userName\":\"18111111111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 10:12:38', 423); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (427, 1, '用户管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"\",\"code\":\"2013\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"},\"deptClassInfoList\":[{\"deptId\":5,\"deptName\":\"思政2101班\"},{\"deptId\":9,\"deptName\":\"思政2602班\"}],\"deptCode\":\"A001\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"67663339@qq.com\",\"joinTime\":\"2025-11-09\",\"loginIp\":\"\",\"nickName\":\"姜大\",\"params\":{},\"phoneNumber\":\"18111111111\",\"remark\":\"ces\",\"roleId\":2,\"roles\":[],\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"userId\":110,\"userName\":\"18111111111\",\"userType\":\"00\"}', NULL, 1, '不允许操作超级管理员用户', '2025-11-08 10:14:56', 16); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (428, 1, '用户管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"\",\"code\":\"2013\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"},\"deptClassInfoList\":[{\"deptId\":5,\"deptName\":\"思政2101班\"},{\"deptId\":9,\"deptName\":\"思政2602班\"}],\"deptCode\":\"A001\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"67663339@qq.com\",\"joinTime\":\"2025-11-09\",\"loginIp\":\"\",\"nickName\":\"姜大\",\"params\":{},\"phoneNumber\":\"18111111111\",\"remark\":\"ces\",\"roleId\":2,\"roles\":[],\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"userId\":110,\"userName\":\"18111111111\",\"userType\":\"00\"}', NULL, 1, '不允许操作超级管理员用户', '2025-11-08 10:15:02', 1); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (429, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:15:17\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:15:17\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:15:17\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"name\\\":\\\"中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"url\\\":\\\"/statics/2025/11/07/中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:15:17\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/07/全景-思想道德与法治-第一章-第一节_20251107185835A005/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:15:17\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"全景测试.zip\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/07/全景测试_20251107185802A004/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":485,\\\"type\\\":\\\"HTML虚拟仿真\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:15:17\"},{\"chapterId\":42,\"chapterType\":7,\"content\":\"[{\\\"url\\\":\\\"https://adzhp.cc/\\\",\\\"title\\\":\\\"adzhp.cc\\\",\\\"description\\\":\\\"adzhp.cc\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 10:15:17', 695); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (430, 1, '用户管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"\",\"code\":\"20131\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"},\"deptClassInfoList\":[{\"deptId\":5,\"deptName\":\"思政2101班\"},{\"deptId\":6,\"deptName\":\"思政2102班\"}],\"deptCode\":\"A001\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"\",\"joinTime\":\"2025-11-09\",\"loginIp\":\"\",\"nickName\":\"姜大1\",\"params\":{},\"phoneNumber\":\"18111111112\",\"remark\":\"111\",\"roleId\":2,\"roles\":[],\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":110,\"userName\":\"18111111112\",\"userType\":\"00\"}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'phoneNumber\' in \'field list\'\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.study.system.mapper.SysUserMapper.updateUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_user SET dept_id = ?, code = ?, sch_id = ?, nick_name = ?, email = ?, phoneNumber = ?, sex = ?, password = ?, status = ?, join_time = ?, update_by = ?, remark = ?, update_time = sysdate() where user_id = ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'phoneNumber\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'phoneNumber\' in \'field list\'', '2025-11-08 10:19:47', 558); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (431, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:20:28\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:20:28\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:20:28\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"name\\\":\\\"中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"url\\\":\\\"/statics/2025/11/07/中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:20:28\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/07/全景-思想道德与法治-第一章-第一节_20251107185835A005/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:20:29\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"毛泽东故居全景展馆\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/%E5%85%A8%E6%99%AF%E6%B5%8B%E8%AF%95_20251106103135A003/index.html\\\",\\\"size\\\":6611125,\\\"type\\\":\\\"毛泽东故居全景展馆\\\",\\\"source\\\":\\\"系统内置\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 10:20:29\"},{\"chapterId\":42,\"chapterType\":7,\"content\":\"[{\\\"url\\\":\\\"https://adzhp.cc/\\\",\\\"title\\\":\\\"adzhp.cc\\\",\\\"description\\\":\\\"adzhp.cc\\\",\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 10:20:29', 713); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (432, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-08 10:21:23\",\"description\":\"

百度官网

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":35,\"name\":\"链接测试\",\"params\":{},\"premiumTypes\":\"\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"\",\"typeId\":6,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-08 10:21:23\",\"description\":\"

百度官网

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":35,\"name\":\"链接测试\",\"params\":{},\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"typeId\":6,\"viewCount\":0}}', 0, NULL, '2025-11-08 10:21:24', 324); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (433, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"description\":\"

百度官网

\",\"fileConfig\":\"[]\",\"id\":35,\"name\":\"链接测试\",\"params\":{},\"premiumTypes\":\"\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"\",\"typeId\":6,\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 10:29:49\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"description\":\"

百度官网

\",\"fileConfig\":\"[]\",\"id\":35,\"name\":\"链接测试\",\"params\":{},\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"typeId\":6,\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 10:29:49\"}}', 0, NULL, '2025-11-08 10:29:49', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (434, 1, '用户管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"\",\"code\":\"20131\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"},\"deptClassInfoList\":[{\"deptId\":5,\"deptName\":\"思政2101班\"},{\"deptId\":6,\"deptName\":\"思政2102班\"}],\"deptCode\":\"A001\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"\",\"joinTime\":\"2025-11-09\",\"loginIp\":\"\",\"nickName\":\"姜大1\",\"params\":{},\"phoneNumber\":\"18111111112\",\"remark\":\"111\",\"roleId\":2,\"roles\":[],\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":110,\"userName\":\"18111111112\",\"userType\":\"00\"}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'phoneNumber\' in \'field list\'\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.study.system.mapper.SysUserMapper.updateUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_user SET dept_id = ?, code = ?, sch_id = ?, nick_name = ?, email = ?, phoneNumber = ?, sex = ?, password = ?, status = ?, join_time = ?, update_by = ?, remark = ?, update_time = sysdate() where user_id = ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'phoneNumber\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'phoneNumber\' in \'field list\'', '2025-11-08 10:35:03', 1132); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (435, 1, '用户管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"20131\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"},\"deptClassInfoList\":[{\"deptId\":5,\"deptName\":\"思政2101班\"},{\"deptId\":6,\"deptName\":\"思政2102班\"}],\"deptCode\":\"A001\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"\",\"joinTime\":\"2025-11-09\",\"loginIp\":\"\",\"nickName\":\"姜大1\",\"params\":{},\"phoneNumber\":\"18111111112\",\"remark\":\"111\",\"roleId\":2,\"roleIds\":[2],\"roles\":[],\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":110,\"userName\":\"18111111112\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 10:36:15', 577); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (436, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"d2z-ok_20251108103647A001.fbx\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/08/d2z-ok_20251108103647A001.fbx\\\",\\\"originalName\\\":null,\\\"size\\\":157632416,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762569408237,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":8,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 10:36:55\",\"viewCount\":9}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"d2z-ok_20251108103647A001.fbx\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/08/d2z-ok_20251108103647A001.fbx\\\",\\\"originalName\\\":null,\\\"size\\\":157632416,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762569408237,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":8,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 10:36:55\",\"viewCount\":9}}', 0, NULL, '2025-11-08 10:36:55', 105); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (437, 1, '用户管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"20131\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptId\":5,\"deptName\":\"思政2101班\",\"userId\":110},{\"classId\":6,\"deptId\":6,\"deptName\":\"思政2102班\",\"userId\":110}],\"deptCode\":\"A001\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"67663339@.com\",\"joinTime\":\"2025-11-09\",\"loginIp\":\"\",\"nickName\":\"姜大1\",\"params\":{},\"phoneNumber\":\"18111111112\",\"remark\":\"111\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"roleSort\":0,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}],\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":110,\"userName\":\"18111111112\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 10:39:38', 518); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (438, 1, '用户管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCADIAMgDAREAAhEBAxEB/8QAHgABAAIBBQEBAAAAAAAAAAAAAAQIBwIDBQYJAQr/xABQEAAABAQBBgkIBwYEAwkAAAADBAUGAAECB9QIERITFFRSU1VXkpOUldMVFhchlpfS1yQxY5jV2OIiI0FRVtYlMjRxCUJkGSYnMzY3Q0Vh/8QAHAEBAAICAwEAAAAAAAAAAAAAAAUIAQcCAwYE/8QANREBAAEEAQIEBAUBCAMAAAAAAAMCBAUGAQdSExSR0RJBk9IIERWC8SEWIiQxM0JRoWOBsf/aAAwDAQACEQMRAD8A/fVshbjjXeR/FQDZC3HGu8j+KgGyFuONd5H8VANkLcca7yP4qAbIW4413kfxUA2QtxxrvI/ioCsV+BHlbVLk7LOWyQLiq4hG6bhOW3Aba6CvXCuGlWwcDlZdAdzk1apQbbjOI41h7fnnG82i5gFtQeLaTS6sijlaE5yBz1mVxwuBeuCnuFjCM1LbNFtUxmrQTddzRpuAgKNt0ZyH3GCWWzMhEIojO5bc7CAtwcENORlCNAwprxysB5o5YoGf9kLcca7yP4qAbIW4413kfxUA2QtxxrvI/ioBshbjjXeR/FQDZC3HGu8j+KgGyFuONd5H8VANkLcca7yP4qAbIW4413kfxUA2QtxxrvI/ioBshbjjXeR/FQDZC3HGu8j+KgGyFuONd5H8VANkLcca7yP4qAbIW4413kfxUA2QtxxrvI/ioCEVKFpjqUpimfUdDlLMonpZ5eTiE/XORmU6p55zlnqzzzSlTnzUylIJuyFuONd5H8VAfNIlutfdxnDQDSJbrX3cZw0A0iW6193GcNANIlutfdxnDQDSJbrX3cZw0A0iW6193GcNAUJdaZlyiLz5GYK63QEUyiZTIbEIvxBZlQSZcQwA2g8lYwoqLYb4igpWOKhgvo9cigdPJ3eT1w+wEYuG7ENOdjhPhYi1AN1QV64NdzxTRtvDGWHVa8IwltelRKoAduW+C76HfNrJZUKp/D3ODehpY8miGWRS1xmTS0qwTdLlLhBm7SJbrX3cZw0A0iW6193GcNANIlutfdxnDQDSJbrX3cZw0A', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 10:41:33', 577); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (439, 1, '用户管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/1', '127.0.0.1', '', '[1]', '{\"msg\":\"当前用户不能删除\",\"code\":500}', 0, NULL, '2025-11-08 10:51:17', 11); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (440, 1, '用户管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/2', '127.0.0.1', '', '[2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 10:51:27', 261); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (441, 1, '用户管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/110', '127.0.0.1', '', '[110]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 10:51:41', 241); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (442, 1, '教师管理', 5, 'com.study.system.controller.BaseTeacherController.export()', 'POST', 1, 'admin', NULL, '/teacher/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-08 10:54:37', 1567); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (443, 1, '用户管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-08 10:58:03', 79); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (444, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251108110316A003.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/08/IndustrialBuilding10_20251108110316A003.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762570996741,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":8,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:03:19\",\"viewCount\":9}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251108110316A003.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/08/IndustrialBuilding10_20251108110316A003.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762570996741,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"t2\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":8,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:03:19\",\"viewCount\":9}}', 0, NULL, '2025-11-08 11:03:20', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (445, 1, '教师管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-08 11:18:50', 1331); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (446, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-08 10:21:23\",\"description\":\"

百度官网

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":35,\"isDel\":0,\"name\":\"链接测试\",\"params\":{},\"premiumTypes\":\"\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1,2,3,4\",\"typeId\":6,\"typeName\":\" 链接\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:24:03\",\"viewCount\":5}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-08 10:21:23\",\"description\":\"

百度官网

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":35,\"isDel\":0,\"name\":\"链接测试\",\"params\":{},\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1,2,3,4\",\"typeId\":6,\"typeName\":\" 链接\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:24:03\",\"viewCount\":5}}', 0, NULL, '2025-11-08 11:24:03', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (447, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 18:06:32\",\"description\":\"

111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/08/展馆-思想道德与法治-第二章_20251108112447A004/index.html\\\",\\\"originalName\\\":\\\"展馆-思想道德与法治-第二章.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1762572288357,\\\"status\\\":\\\"success\\\"}]\",\"id\":15,\"isDel\":0,\"name\":\"仿真\",\"params\":{},\"premiumTypes\":\"1,2\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":9,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:25:01\",\"viewCount\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-06 18:06:32\",\"description\":\"

111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/08/展馆-思想道德与法治-第二章_20251108112447A004/index.html\\\",\\\"originalName\\\":\\\"展馆-思想道德与法治-第二章.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1762572288357,\\\"status\\\":\\\"success\\\"}]\",\"id\":15,\"isDel\":0,\"name\":\"仿真\",\"params\":{},\"premiumTypes\":\"1,2\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":9,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:25:01\",\"viewCount\":2}}', 0, NULL, '2025-11-08 11:25:01', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (448, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 17:05:00\",\"description\":\"

走向帝制,返回原始

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"id\":14,\"isDel\":0,\"name\":\"课件1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:25:39\",\"viewCount\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-06 17:05:00\",\"description\":\"

走向帝制,返回原始

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762486300329,\\\"status\\\":\\\"success\\\"}]\",\"id\":14,\"isDel\":0,\"name\":\"课件1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:25:39\",\"viewCount\":3}}', 0, NULL, '2025-11-08 11:25:39', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (449, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251108110316A003.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/08/IndustrialBuilding10_20251108110316A003.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762570996741,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"3D模型OBJ\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":8,\"typeName\":\"3D模型\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:27:43\",\"viewCount\":12}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/06/3d_20251106161638A003.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:17:30\",\"description\":\"

本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代,本课件围绕新时代中国特色社会主义思想的核心内容,结合二十大报告精神,深入浅出地讲解了新时代:

1.深入浅出地讲解了新时代,

2.本课件围绕新时代中国特色社会主义思想的核心

\",\"downloadCount\":374244,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251108110316A003.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/08/IndustrialBuilding10_20251108110316A003.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762570996741,\\\"status\\\":\\\"success\\\"}]\",\"id\":12,\"isDel\":0,\"name\":\"3D模型OBJ\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":8,\"typeName\":\"3D模型\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:27:43\",\"viewCount\":12}}', 0, NULL, '2025-11-08 11:27:43', 75); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (450, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 17:05:00\",\"description\":\"

走向帝制,返回原始

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"Qt6 C++ 开发指南_20251108113057A005.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/08/Qt6 C++ 开发指南_20251108113057A005.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":24068187,\\\"metadata\\\":null,\\\"uid\\\":1762572657441,\\\"status\\\":\\\"success\\\"}]\",\"id\":14,\"isDel\":0,\"name\":\"课件1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:31:00\",\"viewCount\":4}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"李四\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-06 17:05:00\",\"description\":\"

走向帝制,返回原始

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"Qt6 C++ 开发指南_20251108113057A005.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/08/Qt6 C++ 开发指南_20251108113057A005.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":24068187,\\\"metadata\\\":null,\\\"uid\\\":1762572657441,\\\"status\\\":\\\"success\\\"}]\",\"id\":14,\"isDel\":0,\"name\":\"课件1\",\"params\":{},\"premiumTypes\":\"4,3\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,5,6\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:31:00\",\"viewCount\":4}}', 0, NULL, '2025-11-08 11:31:00', 78); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (451, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"1121\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-07\",\"nickName\":\"姜二\",\"params\":{},\"phoneNumber\":\"18111213123\",\"roleId\":109,\"roleIds\":[109],\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"userId\":111,\"userName\":\"18111213123\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 11:31:30', 404); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (452, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-08 11:43:54\",\"description\":\"

3D模型FBX测试

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":36,\"name\":\"3D模型FBX\",\"params\":{},\"premiumTypes\":\"\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"subjectId\":1,\"tagIds\":\"\",\"typeId\":8,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-08 11:43:54\",\"description\":\"

3D模型FBX测试

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":36,\"name\":\"3D模型FBX\",\"params\":{},\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"state\":1,\"subjectId\":1,\"typeId\":8,\"viewCount\":0}}', 0, NULL, '2025-11-08 11:43:54', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (453, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"description\":\"

3D模型FBX测试

\",\"fileConfig\":\"[{\\\"name\\\":\\\"d2z-ok_20251108114424A006.FBX\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/08/d2z-ok_20251108114424A006.FBX\\\",\\\"originalName\\\":null,\\\"size\\\":157632416,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762573465605,\\\"status\\\":\\\"success\\\"}]\",\"id\":36,\"name\":\"3D模型FBX\",\"params\":{},\"premiumTypes\":\"\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1,2,3\",\"typeId\":8,\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:44:30\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":100,\"authorName\":\"admin\",\"categoryId\":1,\"description\":\"

3D模型FBX测试

\",\"fileConfig\":\"[{\\\"name\\\":\\\"d2z-ok_20251108114424A006.FBX\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/08/d2z-ok_20251108114424A006.FBX\\\",\\\"originalName\\\":null,\\\"size\\\":157632416,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762573465605,\\\"status\\\":\\\"success\\\"}]\",\"id\":36,\"name\":\"3D模型FBX\",\"params\":{},\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1,2,3\",\"typeId\":8,\"updateBy\":\"1\",\"updateTime\":\"2025-11-08 11:44:30\"}}', 0, NULL, '2025-11-08 11:44:30', 68); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (454, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '学校教师角色不能为空!', '2025-11-08 12:44:32', 1102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (455, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '学校教师角色不能为空!', '2025-11-08 12:47:45', 155291); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (456, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 null 导入失败:phoneNumber: 手机号码不能为空
2、账号 null 导入失败:phoneNumber: 手机号码不能为空', '2025-11-08 12:52:15', 1333); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (457, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 18189138536 的所在院系编码不正确
2、账号 18111213123 的所在院系编码不正确', '2025-11-08 12:55:13', 1364); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (458, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 2 条,数据如下:
1、账号 18189138536 导入成功
2、账号 18111213123 更新成功\",\"code\":200}', 0, NULL, '2025-11-08 12:56:23', 581); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (459, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"1212\",\"createBy\":\"admin\",\"createTime\":\"2025-10-21 09:30:43\",\"delFlag\":\"0\",\"dept\":{\"children\":[],\"deptId\":105,\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"email\":\"ry@qq.com\",\"loginDate\":\"2025-11-03 15:09:32\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"若依\",\"params\":{},\"phoneNumber\":\"15666666666\",\"pwdUpdateDate\":\"2025-10-21 09:30:43\",\"remark\":\"测试员\",\"roleId\":2,\"roleIds\":[2],\"roles\":[],\"schId\":1,\"sex\":\"1\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":2,\"userName\":\"15666666666\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 13:02:53', 645); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (460, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"resource/resourceApproval/index\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"资源审核\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2117,\"path\":\"resourceApproval\",\"perms\":\"resource:approval:list\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 14:31:16', 193); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (461, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"resource/satics/index\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"资源统计\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2117,\"path\":\"resourceStatics\",\"perms\":\"resource:satics:list\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 14:32:53', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (462, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2119', '127.0.0.1', '', '2119', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 14:33:20', 158); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (463, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"审核\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2123,\"perms\":\"resource:resource:approve\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 14:41:48', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (464, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-11-08 14:41:48\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2125,\"menuName\":\"审核\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2123,\"path\":\"\",\"perms\":\"resource:approval:approve\",\"routeName\":\"\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 14:59:44', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (465, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_exam_info_question,base_exam_question,base_exam_info,base_exam_question_result\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:00:56', 4182); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (466, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"导出\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2123,\"perms\":\"resource:approval:export\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:01:12', 101); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (467, 1, '代码生成', 2, 'com.study.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/base_exam_info', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:02:08', 1359); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (468, 1, '代码生成', 2, 'com.study.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/base_exam_question', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:02:13', 1129); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (469, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"info\",\"className\":\"BaseExamInfo\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1288,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:52\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":87,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:02:07\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校主键\",\"columnId\":1289,\"columnName\":\"sch_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":87,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:02:07\",\"usableColumn\":false},{\"capJavaField\":\"ExamTitle\",\"columnComment\":\"试卷标题\",\"columnId\":1290,\"columnName\":\"exam_title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"examTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":87,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:02:07\",\"usableColumn\":false},{\"capJavaField\":\"ExamCourseId\",\"columnComment\":\"关联课程\",\"columnId\":1340,\"columnName\":\"exam_course_id\",\"columnType\":\"int\",\"createBy\":\"\",\"createTime\":\"2025-11-08 15:02', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-modules\\study-gen\\target\\classes\\mapper\\generator\\GenTableColumnMapper.xml]\r\n### The error may involve com.study.gen.mapper.GenTableColumnMapper.updateGenTableColumn-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update gen_table_column SET column_comment = ?, java_type = ?, java_field = ?, is_insert = ?, is_edit = ?, is_list = ?, is_query = ?, query_type = ?, html_type = ?, dict_type = ?, sort = ?, update_by = ?, update_time = sysdate() where column_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1\n; Data truncation: Data too long for column \'is_query\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_query\' at row 1', '2025-11-08 15:02:39', 755); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (470, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"baseExamInfo\",\"className\":\"BaseExamInfo\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1288,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:52\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":87,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:02:07\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校主键\",\"columnId\":1289,\"columnName\":\"sch_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":87,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:02:07\",\"usableColumn\":false},{\"capJavaField\":\"ExamTitle\",\"columnComment\":\"试卷标题\",\"columnId\":1290,\"columnName\":\"exam_title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"examTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":87,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:02:07\",\"usableColumn\":false},{\"capJavaField\":\"ExamCourseId\",\"columnComment\":\"关联课程\",\"columnId\":1340,\"columnName\":\"exam_course_id\",\"columnType\":\"int\",\"createBy\":\"\",\"createTime\":\"2025-11-', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:04:04', 1270); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (471, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examQuestion\",\"className\":\"BaseExamQuestion\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1313,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:54\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":89,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:02:12\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校主键\",\"columnId\":1314,\"columnName\":\"sch_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:54\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":89,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:02:12\",\"usableColumn\":false},{\"capJavaField\":\"QuestionDesc\",\"columnComment\":\"问题描述\",\"columnId\":1315,\"columnName\":\"question_desc\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:54\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"questionDesc\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":89,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:02:12\",\"usableColumn\":false},{\"capJavaField\":\"QuestionType\",\"columnComment\":\"问题类型\",\"columnId\":1316,\"columnName\":\"question_type\",\"columnType\":\"int\",\"createB', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:05:06', 1039); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (472, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examInfo\",\"className\":\"BaseExamInfo\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1288,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:52\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":87,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:04:03\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校主键\",\"columnId\":1289,\"columnName\":\"sch_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":87,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:04:03\",\"usableColumn\":false},{\"capJavaField\":\"ExamTitle\",\"columnComment\":\"试卷标题\",\"columnId\":1290,\"columnName\":\"exam_title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"examTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":87,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:04:03\",\"usableColumn\":false},{\"capJavaField\":\"ExamCourseId\",\"columnComment\":\"关联课程\",\"columnId\":1340,\"columnName\":\"exam_course_id\",\"columnType\":\"int\",\"createBy\":\"\",\"createTime\":\"2025-11-08 1', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:05:17', 1278); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (473, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_exam_info\"}', NULL, 0, NULL, '2025-11-08 15:05:21', 461); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (474, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_exam_question\"}', NULL, 0, NULL, '2025-11-08 15:05:30', 228); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (475, 1, '字典类型', 1, 'com.study.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"问题类型\",\"dictType\":\"exam_ques_type\",\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:33:18', 127); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (476, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"单选题\",\"dictSort\":1,\"dictType\":\"exam_ques_type\",\"dictValue\":\"1\",\"listClass\":\"default\",\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:33:49', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (477, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"多选题\",\"dictSort\":2,\"dictType\":\"exam_ques_type\",\"dictValue\":\"2\",\"listClass\":\"default\",\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:34:07', 82); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (478, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"判断题\",\"dictSort\":3,\"dictType\":\"exam_ques_type\",\"dictValue\":\"3\",\"listClass\":\"default\",\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:34:15', 82); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (479, 1, '字典类型', 1, 'com.study.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"试题级别\",\"dictType\":\"exam_ques_rank\",\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:34:59', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (480, 1, '字典类型', 2, 'com.study.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:33:18\",\"dictId\":102,\"dictName\":\"试题类型\",\"dictType\":\"exam_ques_type\",\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:35:08', 269); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (481, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"0.8(易)\",\"dictSort\":1,\"dictType\":\"exam_ques_rank\",\"dictValue\":\"0.8\",\"listClass\":\"default\",\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:36:05', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (482, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"0.6(中)\",\"dictSort\":2,\"dictType\":\"exam_ques_rank\",\"dictValue\":\"0.6\",\"listClass\":\"default\",\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:36:21', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (483, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"0.4(难)\",\"dictSort\":3,\"dictType\":\"exam_ques_rank\",\"dictValue\":\"0.4\",\"listClass\":\"default\",\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 15:36:47', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (484, 2, '资源管理', 5, 'com.study.resource.controller.BaseResourceController.exportApproval()', 'POST', 1, 'admin', NULL, '/resource/exportApproval', '127.0.0.1', '', '{\"schId\":\"2\"}', NULL, 0, NULL, '2025-11-08 15:45:11', 2515); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (485, 2, '资源管理', 5, 'com.study.resource.controller.BaseResourceController.exportApproval()', 'POST', 1, 'admin', NULL, '/resource/exportApproval', '127.0.0.1', '', '{\"schId\":\"2\",\"approvalStateList[0]\":\"1\",\"approvalStateList[2]\":\"3\",\"approvalStateList[1]\":\"2\"}', NULL, 0, NULL, '2025-11-08 15:46:52', 156); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (486, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, 'admin', NULL, '/resource/approve', '127.0.0.1', '', '{\"approvalAdvice\":\"不错的课程,再接再励\",\"approvalState\":2,\"idList\":[35],\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"不错的课程,再接再励\",\"approvalState\":2,\"idList\":[35],\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}}', 0, NULL, '2025-11-08 16:00:03', 449); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (487, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, 'admin', NULL, '/resource/approve', '127.0.0.1', '', '{\"approvalAdvice\":\"哈哈哈\",\"approvalState\":2,\"approverId\":100,\"idList\":[35,15],\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"哈哈哈\",\"approvalState\":2,\"approverId\":100,\"idList\":[35,15],\"params\":{},\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}}', 0, NULL, '2025-11-08 16:02:42', 263); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (488, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_chapter_content_resource\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 16:56:45', 761); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (489, 1, '代码生成', 2, 'com.study.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/base_chapter_content_resource', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 16:58:20', 539); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (490, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"chapterContentResource\",\"className\":\"BaseChapterContentResource\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"\",\"columnId\":1342,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 16:56:44\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":91,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 16:58:20\",\"usableColumn\":false},{\"capJavaField\":\"ChapterContentId\",\"columnComment\":\"内容ID\",\"columnId\":1343,\"columnName\":\"chapter_content_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 16:56:44\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"chapterContentId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":91,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 16:58:20\",\"usableColumn\":false},{\"capJavaField\":\"ResourceId\",\"columnComment\":\"资源ID\",\"columnId\":1344,\"columnName\":\"resource_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 16:56:44\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"resourceId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":91,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 16:58:20\",\"usableColumn\":false},{\"capJavaField\":\"QuestionId\",\"columnComment\":\"试题ID\",\"columnId\":1345,\"columnName\":\"question_id\",\"columnType\":\"bigin', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 17:04:31', 495); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (491, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_chapter_content_resource\"}', NULL, 0, NULL, '2025-11-08 17:04:38', 158); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (492, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:17:50\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:17:50\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:17:50\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"name\\\":\\\"中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"url\\\":\\\"/statics/2025/11/07/中硕思政-需求说明书_20251107185914A006.docx\\\",\\\"size\\\":6782081,\\\"type\\\":\\\"DOCX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"id\":22,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:17:50\"},{\"chapterId\":42,\"chapterType\":5,\"content\":\"{\\\"name\\\":\\\"全景-思想道德与法治-第一章-第一节.zip\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/07/全景-思想道德与法治-第一章-第一节_20251107185835A005/index.html\\\",\\\"originalName\\\":\\\"index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"HTML全景\\\",\\\"source\\\":\\\"本地上传\\\"}\",\"id\":23,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:17:50\"},{\"chapterId\":42,\"chapterType\":6,\"content\":\"{\\\"name\\\":\\\"毛泽东故居全景展馆\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/06/%E5%85%A8%E6%99%AF%E6%B5%8B%E8%AF%95_20251106103135A003/index.html\\\",\\\"size\\\":6611125,\\\"type\\\":\\\"毛泽东故居全景展馆\\\",\\\"source\\\":\\\"系统内置\\\"}\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:17:50\"},{\"chapterId\":42,\"chapterType\":7,\"content\":\"[{\\\"url\\\":\\\"https://adzhp.cc/\\\",\\\"title\\\":\\\"adzhp.cc\\\",\\\"description\\\":\\\"adzhp.cc\\\",\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 17:17:51', 771); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (493, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:04\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:04\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:04\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"s', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 17:18:05', 736); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (494, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:13\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:13\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:13\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"s', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 17:18:14', 705); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (495, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:20\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:20\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:20\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"s', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 17:18:21', 712); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (496, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:39\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:39\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:39\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"s', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 17:18:40', 710); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (497, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:58\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:58\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:58\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"s', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 17:18:58', 664); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (498, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:58\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:58\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:18:58\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"s', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 17:18:59', 681); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (499, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":1,\"content\":\"

55555\\\"xx\\\"222222

\",\"id\":9,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:19:02\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"

1233

\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:19:02\"},{\"chapterId\":42,\"chapterType\":3,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:19:02\"},{\"chapterId\":42,\"chapterType\":4,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"s', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 17:19:03', 715); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (500, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"createTime\":\"2025-11-08 17:34:30\",\"id\":1,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"createTime\":\"2025-11-08 17:34:30\",\"id\":2,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 17:34:30\",\"id\":3,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"/statics/20', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 17:34:31', 762); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (501, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"resource/statistics/index\",\"createTime\":\"2025-11-08 14:32:53\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2124,\"menuName\":\"资源统计\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2117,\"path\":\"resourceStatistics\",\"perms\":\"resource:statistics:list\",\"routeName\":\"\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 17:37:38', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (502, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"导出\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2124,\"perms\":\"resource:statistics:export\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 17:38:09', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (503, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":4,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:42:14\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":3,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 17:42:14\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 17:42:14\",\"id\":12,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 17:42:15', 889); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (504, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":13,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 18:06:04\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":12,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 18:06:04\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 18:06:04\",\"id\":16,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 18:06:05', 866); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (505, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"1111\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:22:37\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"2222\",\"id\":16,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:22:37\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:22:37\",\"id\":20,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"/statics/202', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:22:38', 638); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (506, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"1111\",\"id\":17,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:22:46\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"2222\",\"id\":16,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:22:46\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:22:46\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"/statics/202', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:22:46', 612); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (507, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"1111\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:23:56\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"2222\",\"id\":20,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:23:56\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:23:56\",\"id\":28,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"/statics/202', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:23:57', 601); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (508, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', NULL, 1, '\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'chapter_id\' in \'field list\'\n### The error may exist in file [/Volumes/macData/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/teaching/BaseChapterContentResourceMapper.xml]\n### The error may involve com.study.teaching.mapper.BaseChapterContentResourceMapper.selectByChapterIdAndResourceIdAndType-Inline\n### The error occurred while setting parameters\n### SQL: select id, chapter_id, resource_id, question_id, chapter_type from base_chapter_content_resource WHERE chapter_id = ? and chapter_type = ? and question_id is null\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'chapter_id\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'chapter_id\' in \'field list\'', '2025-11-08 22:24:06', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (509, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"1111\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:24:45\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"2222\",\"id\":20,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:24:46\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:24:46\",\"id\":32,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"/statics/202', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:24:46', 608); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (510, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', NULL, 1, '\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'chapter_id\' in \'field list\'\n### The error may exist in file [/Volumes/macData/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/teaching/BaseChapterContentResourceMapper.xml]\n### The error may involve com.study.teaching.mapper.BaseChapterContentResourceMapper.selectByChapterIdAndResourceIdAndType-Inline\n### The error occurred while setting parameters\n### SQL: select id, chapter_id, resource_id, question_id, chapter_type from base_chapter_content_resource WHERE chapter_id = ? and chapter_type = ? and question_id is null\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'chapter_id\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'chapter_id\' in \'field list\'', '2025-11-08 22:25:04', 30); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (511, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"1111\",\"id\":21,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:26:40\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"2222\",\"id\":20,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:26:40\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:26:40\",\"id\":36,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"/statics/202', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:26:41', 652); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (512, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 22:26:41', 111); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (513, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:38:23\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:38:23\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:38:23\",\"id\":40,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:38:24', 691); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (514, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 22:38:24', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (515, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:38:34\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:38:34\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:38:34\",\"id\":44,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:38:35', 677); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (516, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 22:38:35', 115); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (517, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:47:58\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:47:59\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:47:59\",\"id\":48,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:48:36', 972); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (518, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-08 22:48:36', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (519, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:49:23\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:49:23\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:49:23\",\"id\":52,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:49:24', 660); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (520, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":26,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error evaluating expression \'@ids != null ? ids : array\'. Cause: org.apache.ibatis.ognl.ExpressionSyntaxException: Malformed OGNL expression: @ids != null ? ids : array [org.apache.ibatis.ognl.ParseException: Encountered \" \"!=\" \"!= \"\" at line 1, column 6.\nWas expecting one of:\n \".\" ...\n \"@\" ...\n ]', '2025-11-08 22:54:36', 275797); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (521, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:57:35\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:57:35\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:57:35\",\"id\":56,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:57:36', 668); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (522, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":26,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error evaluating expression \'@ids != null ? ids : array\'. Cause: org.apache.ibatis.ognl.ExpressionSyntaxException: Malformed OGNL expression: @ids != null ? ids : array [org.apache.ibatis.ognl.ParseException: Encountered \" \"!=\" \"!= \"\" at line 1, column 6.\nWas expecting one of:\n \".\" ...\n \"@\" ...\n ]', '2025-11-08 22:58:20', 43533); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (523, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:58:33\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:58:33\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:58:33\",\"id\":60,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:58:34', 692); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (524, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":26,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 22:58:41', 7231); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (525, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:58:52\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:58:52\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:58:52\",\"id\":64,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:58:53', 625); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (526, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":26,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-08 22:59:02', 8691); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (527, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:59:15\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:59:15\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:59:15\",\"id\":68,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:59:16', 662); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (528, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error evaluating expression \'@ids != null ? ids : array\'. Cause: org.apache.ibatis.ognl.ExpressionSyntaxException: Malformed OGNL expression: @ids != null ? ids : array [org.apache.ibatis.ognl.ParseException: Encountered \" \"!=\" \"!= \"\" at line 1, column 6.\nWas expecting one of:\n \".\" ...\n \"@\" ...\n ]', '2025-11-08 22:59:24', 8447); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (529, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:59:56\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 22:59:57\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 22:59:57\",\"id\":72,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 22:59:57', 676); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (530, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-08 23:00:09', 11316); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (531, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 23:00:17\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 23:00:17\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 23:00:17\",\"id\":76,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 23:00:18', 673); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (532, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":26,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error evaluating expression \'@ids != null ? ids : array\'. Cause: org.apache.ibatis.ognl.ExpressionSyntaxException: Malformed OGNL expression: @ids != null ? ids : array [org.apache.ibatis.ognl.ParseException: Encountered \" \"!=\" \"!= \"\" at line 1, column 6.\nWas expecting one of:\n \".\" ...\n \"@\" ...\n ]', '2025-11-08 23:02:31', 132829); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (533, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 23:04:16\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 23:04:17\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 23:04:17\",\"id\":80,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 23:04:24', 1022); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (534, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":26,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 23:04:42', 5905); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (535, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 23:04:50\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 23:04:50\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 23:04:50\",\"id\":84,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 23:04:51', 710); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (536, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 23:04:55', 3976); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (537, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":25,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 23:05:55\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":24,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-08 23:05:55\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-08 23:05:55\",\"id\":88,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-08 23:05:56', 722); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (538, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-08 23:06:31', 35155); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (539, 2, '资源审核', 5, 'com.study.resource.controller.BaseResourceController.exportStatistics()', 'POST', 1, 'admin', NULL, '/resource/exportStatistics', '127.0.0.1', '', '{\"schId\":\"2\",\"approvalStateList\":\"2\"}', NULL, 0, NULL, '2025-11-10 09:35:29', 1899); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (540, 2, '资源审核', 5, 'com.study.resource.controller.BaseResourceController.exportApproval()', 'POST', 1, 'admin', NULL, '/resource/exportApproval', '127.0.0.1', '', '{\"schId\":\"2\",\"approvalStateList[0]\":\"1\",\"approvalStateList[2]\":\"3\",\"approvalStateList[1]\":\"2\"}', NULL, 0, NULL, '2025-11-10 09:47:22', 2079); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (541, 2, '资源审核', 5, 'com.study.resource.controller.BaseResourceController.exportStatistics()', 'POST', 1, 'admin', NULL, '/resource/exportStatistics', '127.0.0.1', '', '{\"schId\":\"2\",\"state\":\"1\",\"approvalStateList\":\"2\"}', NULL, 0, NULL, '2025-11-10 09:52:56', 193); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (542, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_exam_student_result,base_exam_student\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 10:03:53', 2268); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (543, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examInfoQuestion\",\"className\":\"BaseExamInfoQuestion\",\"columns\":[{\"capJavaField\":\"ExamId\",\"columnComment\":\"试卷主键\",\"columnId\":1309,\"columnName\":\"exam_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:53\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"examId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":88,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionId\",\"columnComment\":\"问题主键\",\"columnId\":1310,\"columnName\":\"question_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:53\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"questionId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":88,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionMarks\",\"columnComment\":\"问题分数\",\"columnId\":1311,\"columnName\":\"question_marks\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:53\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"questionMarks\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":88,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionSortBy\",\"columnComment\":\"问题排序\",\"columnId\":1312,\"columnName\":\"question_sort_by\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:53\",\"dictType\":\"\",\"ed', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 10:09:25', 424); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (544, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examQuestion\",\"className\":\"BaseExamQuestion\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1313,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:54\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":89,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:05:05\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校主键\",\"columnId\":1314,\"columnName\":\"sch_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:54\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":89,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:05:05\",\"usableColumn\":false},{\"capJavaField\":\"QuestionDesc\",\"columnComment\":\"问题描述\",\"columnId\":1315,\"columnName\":\"question_desc\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:54\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"questionDesc\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":89,\"updateBy\":\"\",\"updateTime\":\"2025-11-08 15:05:05\",\"usableColumn\":false},{\"capJavaField\":\"QuestionType\",\"columnComment\":\"问题类型\",\"columnId\":1316,\"columnName\":\"question_type\",\"columnType\":\"int\",\"createB', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 10:09:59', 1118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (545, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examQuestionResult\",\"className\":\"BaseExamQuestionResult\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1330,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:55\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":90,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionId\",\"columnComment\":\"问题主键\",\"columnId\":1331,\"columnName\":\"question_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:55\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"questionId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":90,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Option\",\"columnComment\":\"答案选项\",\"columnId\":1332,\"columnName\":\"option\",\"columnType\":\"varchar(10)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:55\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"option\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":90,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Description\",\"columnComment\":\"答案描述\",\"columnId\":1333,\"columnName\":\"description\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 15:00:55\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 10:10:46', 702); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (546, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examStudent\",\"className\":\"BaseExamStudent\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1347,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-10 10:03:51\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":92,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ComId\",\"columnComment\":\"部门主键\",\"columnId\":1348,\"columnName\":\"com_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-10 10:03:51\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"comId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":92,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ProjectId\",\"columnComment\":\"项目主键\",\"columnId\":1349,\"columnName\":\"project_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-10 10:03:51\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"projectId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":92,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"UserId\",\"columnComment\":\"用户主键\",\"columnId\":1350,\"columnName\":\"user_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-10 10:03:51\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"i', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 10:11:29', 1397); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (547, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examStudentResult\",\"className\":\"BaseExamStudentResult\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1369,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-10 10:03:52\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":93,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ExamUserId\",\"columnComment\":\"用户试卷主键\",\"columnId\":1370,\"columnName\":\"exam_user_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-10 10:03:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"examUserId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":93,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionId\",\"columnComment\":\"问题主键\",\"columnId\":1371,\"columnName\":\"question_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-10 10:03:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"questionId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"superColumn\":false,\"tableId\":93,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionTitle\",\"columnComment\":\"问题描述\",\"columnId\":1372,\"columnName\":\"question_title\",\"columnType\":\"varchar(128)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-10 10:03:52\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"inser', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 10:12:09', 768); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (548, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_exam_info,base_exam_info_question,base_exam_question,base_exam_question_result,base_exam_student,base_exam_student_result\"}', NULL, 0, NULL, '2025-11-10 10:13:06', 496); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (549, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_exam_info,base_exam_info_question,base_exam_question,base_exam_question_result,base_exam_student,base_exam_student_result\"}', NULL, 0, NULL, '2025-11-10 10:14:14', 373); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (550, 1, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10014,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createTime\":\"2025-11-10 11:37:36\",\"examCourseId\":3,\"examRank\":1,\"examTime\":44,\"examTitle\":\"2222\",\"fullMark\":4,\"id\":10014,\"params\":{},\"passMark\":55,\"remark\":\"\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 11:37:36', 272); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (551, 1, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10015,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createTime\":\"2025-11-10 11:43:32\",\"estimateMark\":2,\"estimateNum\":1,\"examCourseId\":3,\"examRank\":1,\"examTime\":44,\"examTitle\":\"2222\",\"fullMark\":8,\"id\":10015,\"multipleMark\":2,\"multipleNum\":1,\"params\":{},\"passMark\":44,\"remark\":\"\",\"schId\":1,\"singleMark\":22,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 11:43:32', 212); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (552, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10015,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"estimateMark\":2,\"estimateNum\":1,\"examCourseId\":3,\"examRank\":3,\"examTime\":44,\"examTitle\":\"2222\",\"fullMark\":8,\"id\":10015,\"multipleMark\":2,\"multipleNum\":1,\"params\":{},\"passMark\":44,\"remark\":\"\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":100,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 14:25:00\"}', NULL, 1, 'Invalid bound statement (not found): com.study.examine.mapper.BaseExamInfoMapper.batchBaseExamInfoQuestion', '2025-11-10 14:25:00', 196); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (553, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10015,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"estimateMark\":2,\"estimateNum\":1,\"examCourseId\":3,\"examRank\":3,\"examTime\":44,\"examTitle\":\"2222\",\"fullMark\":8,\"id\":10015,\"multipleMark\":2,\"multipleNum\":1,\"params\":{},\"passMark\":44,\"remark\":\"\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":100,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 14:25:42\"}', NULL, 1, 'Invalid bound statement (not found): com.study.examine.mapper.BaseExamInfoMapper.batchBaseExamInfoQuestion', '2025-11-10 14:25:42', 136); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (554, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10015,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10015,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"estimateMark\":2,\"estimateNum\":1,\"examCourseId\":3,\"examRank\":3,\"examTime\":44,\"examTitle\":\"2222\",\"fullMark\":8,\"id\":10015,\"multipleMark\":2,\"multipleNum\":1,\"params\":{},\"passMark\":44,\"remark\":\"\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":100,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 14:29:56\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 14:29:56', 438); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (555, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10014,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"estimateMark\":2,\"estimateNum\":1,\"examCourseId\":3,\"examRank\":3,\"examTime\":44,\"examTitle\":\"33333\",\"fullMark\":8,\"id\":10014,\"multipleMark\":2,\"multipleNum\":1,\"params\":{},\"passMark\":55,\"remark\":\"\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 14:33:08\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 14:33:09', 263); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (556, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10014,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"estimateMark\":2,\"estimateNum\":1,\"examCourseId\":3,\"examRank\":3,\"examTime\":44,\"examTitle\":\"33333\",\"fullMark\":8,\"id\":10014,\"multipleMark\":2,\"multipleNum\":1,\"params\":{},\"passMark\":55,\"remark\":\"\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 15:04:05\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 15:04:05', 265); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (557, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10014,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"estimateMark\":2,\"estimateNum\":1,\"examCourseId\":3,\"examRank\":3,\"examTime\":44,\"examTitle\":\"33333\",\"fullMark\":8,\"id\":10014,\"multipleMark\":2,\"multipleNum\":1,\"params\":{},\"passMark\":55,\"remark\":\"\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 15:04:32\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 15:04:33', 262); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (558, 1, '基础试卷', 5, 'com.study.examine.controller.BaseExamInfoController.export()', 'POST', 1, 'admin', NULL, '/examInfo/export', '127.0.0.1', '', '{\"name\":\"\",\"pageSize\":\"10\",\"isAsc\":\"asc\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-11-10 15:28:45', 897); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (559, 1, '基础试卷', 5, 'com.study.examine.controller.BaseExamInfoController.export()', 'POST', 1, 'admin', NULL, '/examInfo/export', '127.0.0.1', '', '{\"name\":\"\",\"pageSize\":\"10\",\"isAsc\":\"asc\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-11-10 15:33:33', 1058); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (560, 1, '基础试卷', 5, 'com.study.examine.controller.BaseExamInfoController.export()', 'POST', 1, 'admin', NULL, '/examInfo/export', '127.0.0.1', '', '{\"name\":\"\",\"pageSize\":\"10\",\"isAsc\":\"asc\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-11-10 15:42:59', 939); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (561, 1, '资源分类设置', 1, 'com.study.resource.controller.BaseResourceCategoryController.add()', 'POST', 1, 'admin', NULL, '/resourceCategory', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:35:14\",\"description\":\"沙发沙发是否发射点发顺丰到付\",\"iconPath\":\"/statics/2025/11/10/ScreenShot_2025-11-07_190116_904 拷贝_20251110173509A013.png\",\"id\":7,\"name\":\"啊是教育\",\"params\":{},\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 17:35:14', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (562, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10014,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":5,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10320,\"questionMarks\":2,\"questionSortBy\":6,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"estimateMark\":4,\"estimateNum\":2,\"examCourseId\":3,\"examRank\":3,\"examTime\":44,\"examTitle\":\"33333\",\"fullMark\":12,\"id\":10014,\"multipleMark\":4,\"multipleNum\":2,\"params\":{},\"passMark\":55,\"remark\":\"\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 17:36:40\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 17:36:41', 327); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (563, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/10/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251110173724A014.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:38:45\",\"description\":\"

是的是的色得瑟得瑟的防守上的v发生的

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"项目漫游_20251110173828A015.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/10/项目漫游_20251110173828A015.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":18788772,\\\"metadata\\\":null,\\\"uid\\\":1762767508314,\\\"status\\\":\\\"success\\\"}]\",\"id\":37,\"name\":\"我的第一个视频\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"2\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"6\",\"typeId\":2,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/10/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251110173724A014.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:38:45\",\"description\":\"

是的是的色得瑟得瑟的防守上的v发生的

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"项目漫游_20251110173828A015.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/10/项目漫游_20251110173828A015.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":18788772,\\\"metadata\\\":null,\\\"uid\\\":1762767508314,\\\"status\\\":\\\"success\\\"}]\",\"id\":37,\"name\":\"我的第一个视频\",\"params\":{},\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"2\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"6\",\"typeId\":2,\"viewCount\":0}}', 0, NULL, '2025-11-10 17:38:45', 149); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (564, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/10/ScreenShot_2025-11-10_174528_772_20251110174538A016.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:46:56\",\"description\":\"

得瑟得瑟的方式撒旦发射点发射点发射点

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110174642A017.obj\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110174642A017.obj\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768002375,\\\"status\\\":\\\"success\\\"}]\",\"id\":38,\"name\":\"我的大模型\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"3\",\"typeId\":8,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/10/ScreenShot_2025-11-10_174528_772_20251110174538A016.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:46:56\",\"description\":\"

得瑟得瑟的方式撒旦发射点发射点发射点

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110174642A017.obj\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110174642A017.obj\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768002375,\\\"status\\\":\\\"success\\\"}]\",\"id\":38,\"name\":\"我的大模型\",\"params\":{},\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"3\",\"typeId\":8,\"viewCount\":0}}', 0, NULL, '2025-11-10 17:46:56', 134); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (565, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":101,\"authorName\":\"admin\",\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:53:25\",\"description\":\"

12

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110175322A001.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110175322A001.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768402566,\\\"status\\\":\\\"success\\\"}]\",\"id\":39,\"name\":\"121212\",\"params\":{},\"premiumTypes\":\"\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"\",\"typeId\":8,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":101,\"authorName\":\"admin\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:53:25\",\"description\":\"

12

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110175322A001.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110175322A001.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768402566,\\\"status\\\":\\\"success\\\"}]\",\"id\":39,\"name\":\"121212\",\"params\":{},\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"state\":1,\"typeId\":8,\"viewCount\":0}}', 0, NULL, '2025-11-10 17:53:27', 325); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (566, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:54:55\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768492491,\\\"status\\\":\\\"success\\\"}]\",\"id\":40,\"name\":\"\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"\",\"typeId\":8,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:54:55\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768492491,\\\"status\\\":\\\"success\\\"}]\",\"id\":40,\"params\":{},\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"state\":1,\"typeId\":8,\"viewCount\":0}}', 0, NULL, '2025-11-10 17:54:56', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (567, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10014,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":5,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10014,\"params\":{},\"questionId\":10320,\"questionMarks\":2,\"questionSortBy\":6,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"estimateMark\":4,\"estimateNum\":2,\"examCourseId\":3,\"examRank\":3,\"examTime\":44,\"examTitle\":\"33333\",\"fullMark\":12,\"id\":10014,\"multipleMark\":4,\"multipleNum\":2,\"params\":{},\"passMark\":10,\"remark\":\"\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":100,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 18:06:12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 18:06:13', 414); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (568, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:54:56\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768492491,\\\"status\\\":\\\"success\\\"}]\",\"id\":40,\"isDel\":0,\"name\":\"\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"\",\"typeId\":8,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 18:09:53\",\"viewCount\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:54:56\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768492491,\\\"status\\\":\\\"success\\\"}]\",\"id\":40,\"isDel\":0,\"params\":{},\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"state\":1,\"typeId\":8,\"updateBy\":\"1\",\"updateTime\":\"2025-11-10 18:09:53\",\"viewCount\":1}}', 0, NULL, '2025-11-10 18:09:53', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (569, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"createTime\":\"2025-11-02 14:00:28\",\"dataScope\":\"1\",\"delFlag\":\"0\",\"deptCheckStrictly\":false,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":false,\"menuIds\":[2000],\"params\":{},\"remark\":\"教师角色\",\"roleId\":128,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":13,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"修改角色\'教师\'失败,角色名称已存在\",\"code\":500}', 0, NULL, '2025-11-10 18:22:45', 38); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (570, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2009,2010,2015,2016,2017,2018,2019,2020,2011,2012,2021,2022,2023,2024,2025,2026,2053,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2013,2014,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":100,\"roleKey\":\"sys_teacher\",\"roleName\":\"系统老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 18:26:02', 372); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (571, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":1,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2012,2021,2022,2023,2024,2025,2026,2053,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2013,2014,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":102,\"roleKey\":\"teacher\",\"roleName\":\"老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 18:26:22', 356); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (572, 1, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"code\":\"1000112\",\"createBy\":\"admin\",\"createTime\":\"2025-11-10 21:31:43\",\"deptAncestors\":[\"1\",\"3\",\"7\",\"8\"],\"deptCode\":\"-\",\"deptId\":8,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育2,2026级,思政2601班\\\",\\\"deptIds\\\":\\\"1,3,7,8\\\"}\",\"deptName\":\"-\",\"email\":\"lxm@sd.com\",\"id\":7,\"joinTime\":\"2025-11-07\",\"params\":{},\"phoneNumber\":\"18543434443\",\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"userName\":\"王大力\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-10 21:31:44', 411); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (573, 1, '学生信息', 5, 'com.study.system.controller.BaseStudentController.export()', 'POST', 1, 'admin', NULL, '/student/export', '0:0:0:0:0:0:0:1%0', '', '{\"schId\":\"1\",\"deptAncestors\":\"5\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-10 21:32:36', 902); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (574, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2009,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2010,2015,2016,2017,2018,2019,2020,2011,2012,2021,2022,2023,2024,2025,2026,2053,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2013,2014,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2117,2118,2120,2121,2122,2123,2125,2126,2124,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2054,2056,2057,2064,2065,2066,2067,2068,2069,2070,2073,2071,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":100,\"roleKey\":\"sys_teacher\",\"roleName\":\"系统老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 09:44:40', 384); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (575, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":1,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2009,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2010,2015,2016,2017,2018,2019,2020,2011,2012,2021,2022,2023,2024,2025,2026,2053,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2013,2014,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2117,2118,2120,2121,2122,2123,2125,2126,2124,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2054,2056,2057,2064,2065,2066,2067,2068,2069,2070,2073,2071,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":102,\"roleKey\":\"teacher\",\"roleName\":\"老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 09:44:54', 345); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (576, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2135,2136,2137,2138,2139,2134,2141,2142,2143,2144,2145,2140,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":100,\"roleKey\":\"sys_teacher\",\"roleName\":\"系统老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:05:31', 347); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (577, 2, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"题库管理\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":2004,\"path\":\"/questionMgr\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:23:34', 111); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (578, 2, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"考试管理\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":2004,\"path\":\"/examMgr\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:24:04', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (579, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examInfo/index\",\"createTime\":\"2025-11-10 10:15:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2134,\"menuName\":\"基础试卷\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2170,\"path\":\"examInfo\",\"perms\":\"examine:examInfo:list\",\"routeName\":\"\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:24:27', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (580, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examInfoQuestion/index\",\"createTime\":\"2025-11-10 10:16:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2140,\"menuName\":\"试卷问题\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2171,\"path\":\"examInfoQuestion\",\"perms\":\"examine:examInfoQuestion:list\",\"routeName\":\"\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:24:39', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (581, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examQuestion/index\",\"createTime\":\"2025-11-10 10:16:10\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2146,\"menuName\":\"基础题库\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2170,\"path\":\"examQuestion\",\"perms\":\"examine:examQuestion:list\",\"routeName\":\"\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:25:01', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (582, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examQuestionResult/index\",\"createTime\":\"2025-11-10 10:16:17\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2152,\"menuName\":\"题库问题\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2170,\"path\":\"examQuestionResult\",\"perms\":\"examine:examQuestionResult:list\",\"routeName\":\"\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:25:13', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (583, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examStudent/index\",\"createTime\":\"2025-11-10 10:16:24\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2158,\"menuName\":\"用户试卷\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2171,\"path\":\"examStudent\",\"perms\":\"examine:examStudent:list\",\"routeName\":\"\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:25:24', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (584, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examStudentResult/index\",\"createTime\":\"2025-11-10 10:16:33\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2164,\"menuName\":\"用户试卷结果\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2171,\"path\":\"examStudentResult\",\"perms\":\"examine:examStudentResult:list\",\"routeName\":\"\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:25:43', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (585, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":100,\"roleKey\":\"sys_teacher\",\"roleName\":\"系统老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:26:07', 341); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (586, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":1,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":102,\"roleKey\":\"teacher\",\"roleName\":\"老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:26:13', 332); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (587, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":100,\"roleKey\":\"sys_teacher\",\"roleName\":\"系统老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:30:21', 336); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (588, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":100,\"roleKey\":\"sys_teacher\",\"roleName\":\"系统老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:30:32', 337); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (589, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":100,\"roleKey\":\"sys_teacher\",\"roleName\":\"系统老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:32:50', 367); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (590, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":100,\"roleKey\":\"sys_teacher\",\"roleName\":\"系统老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:36:32', 418); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (591, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":1,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":102,\"roleKey\":\"teacher\",\"roleName\":\"老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:36:39', 401); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (592, 2, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, '王五', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10016,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":5,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10320,\"questionMarks\":2,\"questionSortBy\":6,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"101\",\"createTime\":\"2025-11-11 10:56:24\",\"estimateMark\":4,\"estimateNum\":2,\"examCourseId\":3,\"examRank\":3,\"examTime\":100,\"examTitle\":\"444\",\"fullMark\":12,\"id\":10016,\"multipleMark\":4,\"multipleNum\":2,\"params\":{},\"passMark\":20,\"remark\":\"222\",\"schId\":2,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"101\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 10:56:24', 271); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (593, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"教学设计、课堂管理、教学评估一体化平台\",\"appIconPath\":\"/statics/2025/11/07/ScreenShot_2025-11-07_190220_618 拷贝_20251107190507A010.png\",\"appId\":2,\"appName\":\"思政教学系统\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":1,\"params\":{},\"remark\":\"2\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-11 11:11:17\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 11:11:18', 132); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (594, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"信息发布\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":2005,\"path\":\"/msgPublish\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 11:13:17', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (595, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"思政资讯\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":2005,\"path\":\"/newsMgr\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 11:13:45', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (596, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-11-11 11:13:17\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2172,\"menuName\":\"信息发布\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":2005,\"path\":\"/msgPublishMgr\",\"perms\":\"\",\"routeName\":\"\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 11:13:52', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (597, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"校园邮箱\",\"menuType\":\"M\",\"orderNum\":3,\"params\":{},\"parentId\":2005,\"path\":\"/mailMgr\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 11:14:10', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (598, 1, '学生信息', 5, 'com.study.system.controller.BaseStudentController.export()', 'POST', 1, 'admin', NULL, '/student/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-11 11:27:17', 808); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (599, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10016,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":5,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10320,\"questionMarks\":2,\"questionSortBy\":6,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10326,\"questionMarks\":2,\"questionSortBy\":7,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10325,\"questionMarks\":2,\"questionSortBy\":8,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10016,\"params\":{},\"questionId\":10324,\"questionMarks\":2,\"questionSortBy\":9,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"estimateMark\":10,\"estimateNum\":5,\"examCourseId\":3,\"examRank\":3,\"examTime\":100,\"examTitle\":\"444\",\"fullMark\":18,\"id\":10016,\"multipleMark\":4,\"multipleNum\":2,\"params\":{},\"passMark\":20,\"remark\":\"222\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 11:27:59\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 11:27:59', 290); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (600, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"2023124\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 11:31:30\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"},\"deptClassInfoList\":[{\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\"},{\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\"}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"987@qq.com\",\"joinTime\":\"2025-01-22\",\"loginIp\":\"\",\"nickName\":\"姜姜尔尔\",\"params\":{},\"phoneNumber\":\"18111213123\",\"remark\":\"665\",\"roleId\":109,\"roleIds\":[109],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":0,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}],\"schId\":1,\"sex\":\"1\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"1\",\"updateBy\":\"admin\",\"userId\":111,\"userName\":\"18111213123\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 12:05:31', 624); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (601, 1, '教师管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\",\"status\":\"1\"}', NULL, 0, NULL, '2025-11-11 12:06:14', 846); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (602, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"111\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"email\":\"111@qq.com\",\"joinTime\":\"2025-11-11\",\"nickName\":\"111\",\"params\":{},\"phoneNumber\":\"15202903073\",\"remark\":\"112\",\"roleId\":2,\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2025-11-11 12:07:32', 74); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (603, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"code\":\"111\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"email\":\"111@qq.com\",\"joinTime\":\"2025-11-11\",\"nickName\":\"111\",\"params\":{},\"phoneNumber\":\"15202903073\",\"remark\":\"112\",\"roleId\":2,\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2025-11-11 12:07:39', 75); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (604, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"111\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"email\":\"111@qq.com\",\"joinTime\":\"2025-11-11\",\"nickName\":\"111\",\"params\":{},\"phoneNumber\":\"15202903073\",\"remark\":\"112\",\"roleId\":2,\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2025-11-11 12:07:55', 75); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (605, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":101,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-11 12:10:03\",\"description\":\"

驳回测试

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/11/C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762834190571,\\\"status\\\":\\\"success\\\"}]\",\"id\":41,\"name\":\"驳回测试\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":1,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":101,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-11 12:10:03\",\"description\":\"

驳回测试

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/11/C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762834190571,\\\"status\\\":\\\"success\\\"}]\",\"id\":41,\"name\":\"驳回测试\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":1,\"viewCount\":0}}', 0, NULL, '2025-11-11 12:10:04', 269); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (606, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"code\":\"111\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"email\":\"111@qq.com\",\"joinTime\":\"2025-11-11\",\"nickName\":\"111\",\"params\":{},\"phoneNumber\":\"15202903073\",\"remark\":\"112\",\"roleId\":2,\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2025-11-11 12:10:30', 97); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (607, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"code\":\"111\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"email\":\"111@qq.com\",\"joinTime\":\"2025-11-11\",\"nickName\":\"111\",\"params\":{},\"phoneNumber\":\"15202903073\",\"remark\":\"112\",\"roleId\":2,\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2025-11-11 12:11:49', 97); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (608, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"111\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"email\":\"111@qq.com\",\"joinTime\":\"2025-11-11\",\"nickName\":\"111\",\"params\":{},\"phoneNumber\":\"15202903073\",\"remark\":\"112\",\"roleId\":2,\"schId\":1,\"sex\":\"0\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2025-11-11 12:12:06', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (609, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-11 13:07:00\",\"id\":10329,\"params\":{},\"questionAnalysis\":\"测试11\",\"questionAnswer\":\"D\",\"questionCourseId\":3,\"questionDesc\":\"干什么?\",\"questionScore\":\"1212\",\"questionType\":1,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 13:07:02', 307); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (610, 1, '基础题库', 2, 'com.study.examine.controller.BaseExamQuestionController.edit()', 'PUT', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"11\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"22\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 13:07:00\",\"id\":10329,\"params\":{},\"questionAnalysis\":\"测试11\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionDesc\":\"干什么?\",\"questionScore\":\"1212\",\"questionType\":1,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 13:31:18\",\"useNumber\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 13:31:19', 346); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (611, 1, '基础题库', 2, 'com.study.examine.controller.BaseExamQuestionController.edit()', 'PUT', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"11\",\"id\":945,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"22\",\"id\":946,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 13:07:00\",\"id\":10329,\"params\":{},\"questionAnalysis\":\"测试11\",\"questionAnswer\":\"A,B\",\"questionCourseId\":3,\"questionDesc\":\"干什么?\",\"questionKnowledge\":\"12,123123\",\"questionRank\":\"0.6\",\"questionScore\":\"1212\",\"questionType\":2,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 13:31:37\",\"useNumber\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 13:31:39', 322); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (612, 1, '基础题库', 2, 'com.study.examine.controller.BaseExamQuestionController.edit()', 'PUT', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"11\",\"id\":945,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"22\",\"id\":946,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 13:07:00\",\"id\":10329,\"params\":{},\"questionAnalysis\":\"测试11\",\"questionAnswer\":\"A,B\",\"questionCourseId\":3,\"questionDesc\":\"干什么?\",\"questionKnowledge\":\"12,123123,214fs阿三打撒\",\"questionRank\":\"0.6\",\"questionScore\":\"1212\",\"questionType\":2,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 13:33:22\",\"useNumber\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 13:33:24', 320); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (613, 1, '基础题库', 2, 'com.study.examine.controller.BaseExamQuestionController.edit()', 'PUT', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"11\",\"id\":945,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"22\",\"id\":946,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"2313\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"你在干什么\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"方法\",\"isOk\":0,\"option\":\"E\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 13:07:00\",\"id\":10329,\"params\":{},\"questionAnalysis\":\"测试11\",\"questionAnswer\":\"A,B\",\"questionCourseId\":3,\"questionDesc\":\"干什么?\",\"questionKnowledge\":\"12,123123,214fs阿三打撒\",\"questionRank\":\"0.6\",\"questionScore\":\"1212\",\"questionType\":2,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 13:33:41\",\"useNumber\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 13:33:42', 319); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (614, 1, '基础题库', 2, 'com.study.examine.controller.BaseExamQuestionController.edit()', 'PUT', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"11\",\"id\":945,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"22\",\"id\":946,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"2313\",\"id\":947,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"你在干什么\",\"id\":948,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 13:07:00\",\"id\":10329,\"params\":{},\"questionAnalysis\":\"测试11\",\"questionAnswer\":\"A,B\",\"questionCourseId\":3,\"questionDesc\":\"干什么?\",\"questionKnowledge\":\"12,123123,214fs阿三打撒\",\"questionRank\":\"0.4\",\"questionScore\":\"1212\",\"questionType\":2,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 13:33:50\",\"useNumber\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 13:33:52', 320); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (615, 1, '基础题库', 2, 'com.study.examine.controller.BaseExamQuestionController.edit()', 'PUT', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"111\",\"id\":945,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"222\",\"id\":946,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"333\",\"id\":947,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"444\",\"id\":948,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 13:07:00\",\"id\":10329,\"params\":{},\"questionAnalysis\":\"测试555\",\"questionAnswer\":\"A,B\",\"questionCourseId\":3,\"questionDesc\":\"干什么1111?\",\"questionKnowledge\":\"123123,214fs阿三打撒\",\"questionRank\":\"0.4\",\"questionScore\":\"11\",\"questionType\":2,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 13:34:38\",\"useNumber\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 13:34:39', 316); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (616, 1, '基础题库', 3, 'com.study.examine.controller.BaseExamQuestionController.remove()', 'DELETE', 1, 'admin', NULL, '/examQuestion/10329', '127.0.0.1', '', '[10329]', NULL, 1, '当前题库已在使用中,不能修改和删除...', '2025-11-11 13:41:05', 235); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (617, 1, '基础题库', 3, 'com.study.examine.controller.BaseExamQuestionController.remove()', 'DELETE', 1, 'admin', NULL, '/examQuestion/10329', '127.0.0.1', '', '[10329]', NULL, 1, '当前题库已在使用中,不能修改和删除...', '2025-11-11 13:41:11', 177); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (618, 1, '学生信息', 5, 'com.study.system.controller.BaseStudentController.export()', 'POST', 1, 'admin', NULL, '/student/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-11 14:11:15', 2344); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (619, 1, '基础题库', 5, 'com.study.examine.controller.BaseExamQuestionController.export()', 'POST', 1, 'admin', NULL, '/examQuestion/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 1, '\r\n### Error querying 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 \'option asc\' at line 3\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\examine\\BaseExamQuestionMapper.xml]\r\n### The error may involve com.study.examine.mapper.BaseExamQuestionMapper.selectBaseExamQuestionResultList-Inline\r\n### The error occurred while setting parameters\r\n### SQL: select id, question_id, `option`, description, is_ok, create_by, create_time, update_by, update_time, remark from base_exam_question_result where question_id = ? order by option asc\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 \'option asc\' at line 3\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 \'option asc\' at line 3', '2025-11-11 14:12:42', 201); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (620, 1, '基础题库', 5, 'com.study.examine.controller.BaseExamQuestionController.export()', 'POST', 1, 'admin', NULL, '/examQuestion/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-11 14:14:39', 1849); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (621, 1, '基础题库', 5, 'com.study.examine.controller.BaseExamQuestionController.export()', 'POST', 1, 'admin', NULL, '/examQuestion/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-11 14:21:05', 1776); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (622, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":29,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:30:22\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":28,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:30:23\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-11 14:30:23\",\"id\":92,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 14:30:24', 1187); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (623, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-11 14:30:32', 48); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (624, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalAdvice\":\"驳回了\",\"approvalState\":1,\"approverId\":101,\"authorId\":101,\"authorName\":\"王五\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-11 12:10:03\",\"description\":\"

驳回测试

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/11/C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762834190571,\\\"status\\\":\\\"success\\\"}]\",\"id\":41,\"isDel\":0,\"name\":\"驳回测试\",\"params\":{},\"premiumTypes\":\"1\",\"referenceCount\":0,\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 14:31:00\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"驳回了\",\"approvalState\":1,\"approverId\":101,\"authorId\":101,\"authorName\":\"王五\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-11 12:10:03\",\"description\":\"

驳回测试

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/11/C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762834190571,\\\"status\\\":\\\"success\\\"}]\",\"id\":41,\"isDel\":0,\"name\":\"驳回测试\",\"params\":{},\"premiumTypes\":\"1\",\"referenceCount\":0,\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 14:31:00\",\"viewCount\":0}}', 0, NULL, '2025-11-11 14:31:01', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (625, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalAdvice\":\"驳回了\",\"approvalState\":1,\"approverId\":101,\"authorId\":101,\"authorName\":\"王五\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-11 12:10:03\",\"description\":\"

驳回测试

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/11/C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762834190571,\\\"status\\\":\\\"success\\\"}]\",\"id\":41,\"isDel\":0,\"name\":\"驳回测试\",\"params\":{},\"premiumTypes\":\"1\",\"referenceCount\":0,\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 14:31:45\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"驳回了\",\"approvalState\":1,\"approverId\":101,\"authorId\":101,\"authorName\":\"王五\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-11 12:10:03\",\"description\":\"

驳回测试

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/11/C_C++ 多线程编程精髓_专栏_20251111120950A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762834190571,\\\"status\\\":\\\"success\\\"}]\",\"id\":41,\"isDel\":0,\"name\":\"驳回测试\",\"params\":{},\"premiumTypes\":\"1\",\"referenceCount\":0,\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 14:31:45\",\"viewCount\":0}}', 0, NULL, '2025-11-11 14:31:45', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (626, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/10/ScreenShot_2025-11-10_174528_772_20251110174538A016.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:46:56\",\"description\":\"

得瑟得瑟的方式撒旦发射点发射点发射点

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110174642A017.obj\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110174642A017.obj\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768002375,\\\"status\\\":\\\"success\\\"}]\",\"id\":38,\"isDel\":0,\"name\":\"我的大模型\",\"params\":{},\"premiumTypes\":\"\",\"referenceCount\":0,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"3\",\"typeId\":8,\"typeName\":\"3D模型\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 14:32:47\",\"viewCount\":6}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/10/ScreenShot_2025-11-10_174528_772_20251110174538A016.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:46:56\",\"description\":\"

得瑟得瑟的方式撒旦发射点发射点发射点

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110174642A017.obj\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110174642A017.obj\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768002375,\\\"status\\\":\\\"success\\\"}]\",\"id\":38,\"isDel\":0,\"name\":\"我的大模型\",\"params\":{},\"referenceCount\":0,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"3\",\"typeId\":8,\"typeName\":\"3D模型\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 14:32:47\",\"viewCount\":6}}', 0, NULL, '2025-11-11 14:32:47', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (627, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:54:56\",\"description\":\"

1111111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768492491,\\\"status\\\":\\\"success\\\"}]\",\"id\":40,\"isDel\":0,\"name\":\"ttttttttttttt11111\",\"params\":{},\"premiumTypes\":\"\",\"referenceCount\":0,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":8,\"typeName\":\"3D模型\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 14:39:28\",\"viewCount\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:54:56\",\"description\":\"

1111111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/10/IndustrialBuilding10_20251110175452A002.OBJ\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1762768492491,\\\"status\\\":\\\"success\\\"}]\",\"id\":40,\"isDel\":0,\"name\":\"ttttttttttttt11111\",\"params\":{},\"referenceCount\":0,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":8,\"typeName\":\"3D模型\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 14:39:28\",\"viewCount\":2}}', 0, NULL, '2025-11-11 14:39:29', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (628, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":93,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:40:58\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":92,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:40:58\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-11 14:40:58\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 14:40:59', 683); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (629, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-11 14:40:59', 29); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (630, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":93,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:41:42\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":92,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:41:42\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-11 14:41:42\",\"id\":100,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 14:41:42', 687); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (631, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-11 14:41:57', 33); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (632, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":93,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:47:38\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":92,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:47:38\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-11 14:47:38\",\"id\":104,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 14:47:38', 731); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (633, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-11 14:47:38', 28); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (634, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":1,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:48:48\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":2,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:48:48\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:48:48\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 14:48:48', 683); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (635, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-11 14:48:49', 31); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (636, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":1,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:49:59\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":2,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:49:59\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:49:59\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 14:50:39', 1072); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (637, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2025-11-11 14:50:39', 38750); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (638, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":1,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:53:56\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":2,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:53:56\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:53:57\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 14:53:57', 712); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (639, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":1,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:54:18\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":2,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:54:18\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:54:18\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 14:54:18', 702); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (640, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10321,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10318,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 14:55:32', 64354); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (641, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":1,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:56:52\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":2,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:56:52\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 14:56:52\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 14:56:53', 691); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (642, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10321,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10318,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10322,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10319,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3}', 0, NULL, '2025-11-11 14:57:14', 21224); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (643, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":1,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 15:02:52\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":2,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 15:02:52\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 15:02:52\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 15:02:53', 684); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (644, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10321,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10318,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10322,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10319,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-11 15:02:53', 28); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (645, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":101,\"content\":\"


\",\"createTime\":\"2025-11-11 16:10:06\",\"id\":108,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":102,\"content\":\"\",\"createTime\":\"2025-11-11 16:10:06\",\"id\":109,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-11 16:10:06\",\"id\":110,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-11 16:10:06\",\"id\":111,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-11 16:10:06\",\"id\":112,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-11 16:10:06\",\"id\":113,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-11 16:10:06\",\"id\":114,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-11 16:10:06\",\"id\":115,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-11 16:10:06\",\"id\":116,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-11 16:10:06\",\"id\":117,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"content\":\"[10328,10327,10318,10322,10326,10325,10324]\",\"createTime\":\"2025-11-11 16:10:07\",\"id\":118,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 16:10:07', 789); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (646, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10318,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10322,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10326,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10325,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10324,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":7}', 0, NULL, '2025-11-11 16:10:07', 97); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (647, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":101,\"content\":\"


\",\"id\":108,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"},{\"chapterId\":44,\"chapterType\":102,\"content\":\"\",\"id\":109,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"\",\"id\":110,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"},{\"chapterId\":44,\"chapterType\":1,\"content\":\"\",\"id\":111,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"},{\"chapterId\":44,\"chapterType\":7,\"content\":\"\",\"id\":112,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"},{\"chapterId\":44,\"chapterType\":9,\"content\":\"\",\"id\":113,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"},{\"chapterId\":44,\"chapterType\":103,\"content\":\"\",\"id\":114,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"},{\"chapterId\":44,\"chapterType\":10,\"content\":\"\",\"id\":115,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"},{\"chapterId\":44,\"chapterType\":5,\"content\":\"\",\"id\":116,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"},{\"chapterId\":44,\"chapterType\":8,\"content\":\"\",\"id\":117,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"},{\"chapterId\":44,\"chapterType\":104,\"content\":\"[10328,10327,10318,10322,10326,10325,10324]\",\"id\":118,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:43\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 16:19:44', 724); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (648, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10318,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10322,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10326,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10325,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10324,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-11 16:19:44', 30); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (649, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":1,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:48\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":2,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:48\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:19:48\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\":\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 16:19:48', 685); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (650, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10321,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10318,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10322,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10319,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-11 16:19:48', 37); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (651, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":45,\"chapterType\":101,\"content\":\"


\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":119,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":102,\"content\":\"


\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":120,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":121,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":122,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":123,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":124,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":125,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":126,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":127,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":128,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":104,\"content\":\"[10328,10327,10326,10325,10324]\",\"createTime\":\"2025-11-11 16:20:51\",\"id\":129,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 16:20:51', 691); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (652, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":45,\"chapterType\":104,\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":104,\"params\":{},\"questionId\":10326,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":104,\"params\":{},\"questionId\":10325,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":45,\"chapterType\":104,\"params\":{},\"questionId\":10324,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":5}', 0, NULL, '2025-11-11 16:20:51', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (653, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":32,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":11}', 0, NULL, '2025-11-11 16:39:22', 226); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (654, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":97,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:39:20\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:39:20\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-11 16:39:20\",\"id\":130,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 16:39:22', 1167); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (655, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":97,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:39:20\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:39:20\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-11 16:39:20\",\"id\":131,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"url\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 16:39:22', 1162); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (656, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":32,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":11}', 0, NULL, '2025-11-11 16:39:22', 218); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (657, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111111

\",\"id\":97,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:39:42\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:39:43\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-11 16:39:43\",\"id\":138,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"ur', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 16:39:43', 911); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (658, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":32,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-11 16:39:44', 40); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (659, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111111

\",\"id\":97,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:39:51\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:39:51\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-11 16:39:51\",\"id\":142,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"ur', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 16:39:52', 885); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (660, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":32,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-11 16:39:52', 38); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (661, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111111

\",\"id\":97,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:45:39\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":96,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 16:45:40\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-11 16:45:40\",\"id\":146,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":20,\\\"name\\\":\\\"Python编程入门导论.pdf\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.pdf\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":6611125,\\\"size\\\":6611125,\\\"ur', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 16:45:40', 907); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (662, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":32,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":34,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-11 16:45:41', 37); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (663, 1, '章节信息', 5, 'com.study.teaching.controller.BaseChapterController.export()', 'POST', 1, 'admin', NULL, '/chapter/export', '0:0:0:0:0:0:0:1%0', '', '{\"courseId\":\"3\"}', NULL, 0, NULL, '2025-11-11 16:45:54', 987); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (664, 1, '资源分类设置', 1, 'com.study.resource.controller.BaseResourceCategoryController.add()', 'POST', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-11 16:52:35\",\"description\":\"\",\"iconPath\":\"/statics/2025/11/11/系统设置_20251111165233A001.png\",\"id\":8,\"name\":\"111\",\"params\":{},\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 16:52:35', 106); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (665, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-07 17:55:23\",\"description\":\"

111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":32065481,\\\"metadata\\\":null,\\\"uid\\\":1762851694309,\\\"status\\\":\\\"success\\\"}]\",\"id\":24,\"isDel\":0,\"name\":\"test\",\"params\":{},\"premiumTypes\":\"\",\"referenceCount\":0,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:01:34\",\"viewCount\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-07 17:55:23\",\"description\":\"

111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":32065481,\\\"metadata\\\":null,\\\"uid\\\":1762851694309,\\\"status\\\":\\\"success\\\"}]\",\"id\":24,\"isDel\":0,\"name\":\"test\",\"params\":{},\"referenceCount\":0,\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:01:34\",\"viewCount\":3}}', 0, NULL, '2025-11-11 17:01:34', 74); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (666, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:13:10\",\"description\":\"

aaaaaaaaaaaaaaaaaaaaaaa

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161303A001.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161303A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416783615,\\\"status\\\":\\\"success\\\"}]\",\"id\":11,\"isDel\":0,\"name\":\"t1\",\"params\":{},\"premiumTypes\":\"4,3\",\"referenceCount\":0,\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,3,5,6\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:04:38\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-06 16:13:10\",\"description\":\"

aaaaaaaaaaaaaaaaaaaaaaa

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"C_C++ 多线程编程精髓_专栏_20251106161303A001.pdf\\\",\\\"url\\\":\\\"/statics//2025/11/06/C_C++ 多线程编程精髓_专栏_20251106161303A001.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":6611125,\\\"metadata\\\":null,\\\"uid\\\":1762416783615,\\\"status\\\":\\\"success\\\"}]\",\"id\":11,\"isDel\":0,\"name\":\"t1\",\"params\":{},\"premiumTypes\":\"4,3\",\"referenceCount\":0,\"schId\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"4,3,5,6\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:04:38\",\"viewCount\":0}}', 0, NULL, '2025-11-11 17:04:38', 72); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (667, 1, '基础题库', 2, 'com.study.examine.controller.BaseExamQuestionController.edit()', 'PUT', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"111111\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"222222\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 15:09:11\",\"id\":10328,\"params\":{},\"questionAnalysis\":\"a\",\"questionAnswer\":\"B\",\"questionCourseId\":3,\"questionCourseName\":\"-\",\"questionDesc\":\"test5\",\"questionKnowledge\":\"b\",\"questionRank\":\"0.6\",\"questionScore\":\"2\",\"questionType\":\"1\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:11:10\",\"useNumber\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 17:11:11', 322); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (668, 1, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, 'admin', NULL, '/examInfo', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10017,\"params\":{},\"questionId\":10328,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10017,\"params\":{},\"questionId\":10327,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10017,\"params\":{},\"questionId\":10329,\"questionMarks\":11,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10017,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10017,\"params\":{},\"questionId\":10326,\"questionMarks\":2,\"questionSortBy\":5,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10017,\"params\":{},\"questionId\":10325,\"questionMarks\":2,\"questionSortBy\":6,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 17:16:27\",\"estimateMark\":4,\"estimateNum\":2,\"examCourseId\":3,\"examRank\":3,\"examTime\":120,\"examTitle\":\"测试试卷\",\"fullMark\":21,\"id\":10017,\"multipleMark\":13,\"multipleNum\":2,\"params\":{},\"passMark\":100,\"remark\":\"\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":0,\"updateBy\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 17:16:27', 195); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (669, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10017,\"params\":{},\"questionId\":10328,\"questionMarks\":2,\"questionSortBy\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10017,\"params\":{},\"questionId\":10327,\"questionMarks\":2,\"questionSortBy\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10017,\"params\":{},\"questionId\":10329,\"questionMarks\":11,\"questionSortBy\":3,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10017,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":4,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10017,\"params\":{},\"questionId\":10326,\"questionMarks\":2,\"questionSortBy\":5,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"examId\":10017,\"params\":{},\"questionId\":10325,\"questionMarks\":2,\"questionSortBy\":6,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"estimateMark\":4,\"estimateNum\":2,\"examCourseId\":3,\"examRank\":3,\"examTime\":120,\"examTitle\":\"测试试卷\",\"fullMark\":21,\"id\":10017,\"multipleMark\":13,\"multipleNum\":2,\"params\":{},\"passMark\":10,\"remark\":\"\",\"schId\":1,\"singleMark\":4,\"singleNum\":2,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":100,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 17:17:06\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 17:17:06', 221); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (670, 1, '基础题库', 3, 'com.study.examine.controller.BaseExamQuestionController.remove()', 'DELETE', 1, 'admin', NULL, '/examQuestion/10329', '0:0:0:0:0:0:0:1%0', '', '[10329]', NULL, 1, '当前题库已在使用中,不能修改和删除...', '2025-11-11 17:21:21', 125); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (671, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '0:0:0:0:0:0:0:1%0', '', '{\"apps\":\"1,2,3,4,5,6,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"admin@xsyz.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"188888888888\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-11 17:29:44\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 17:29:45', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (672, 1, '基础试卷', 5, 'com.study.examine.controller.BaseExamInfoController.export()', 'POST', 1, 'admin', NULL, '/examInfo/export', '127.0.0.1', '', '{\"name\":\"\",\"pageSize\":\"10\",\"isAsc\":\"asc\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-11-11 17:45:10', 957); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (673, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":101,\"content\":\"


\",\"id\":108,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 18:13:56\"},{\"chapterId\":44,\"chapterType\":102,\"content\":\"\",\"id\":109,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 18:13:57\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":110,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 18:13:57\"},{\"chapterId\":44,\"chapterType\":1,\"content\":\"\",\"id\":111,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 18:13:57\"},{\"chapterId\":44,\"chapterType\":7,\"content\":\"\",\"id\":112,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 18:13:57\"},{\"chapterId\":44,\"chapterType\":9,\"content\":\"\",\"id\":113,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 18:13:57\"},{\"chapterId\":44,\"chapterType\":103,\"content\":\"\",\"id\":114,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 18:13:57\"},{\"chapterId\":44,\"chapterType\":10,\"content\":\"\",\"id\":115,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-11 18:13:57\"},{\"chapterId\":44,\"chapterType\":5,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":29,\\\"name\\\":\\\"爱国主义教育讲座.mp3\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/07/伍佰 & China Blue - 突然的自我_20251107152354A002.mp3\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"爱国主义教育讲座.mp3\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":n', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-11 18:13:58', 1462); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (674, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10318,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10322,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10326,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10325,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10324,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":2}', 0, NULL, '2025-11-11 18:13:58', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (675, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":4,\"createBy\":\"1\",\"createTime\":\"2025-11-11 18:24:43\",\"id\":50,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"state\":1,\"subChapters\":[],\"title\":\"我的区长父亲\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":4,\"createBy\":\"1\",\"createTime\":\"2025-11-11 18:24:43\",\"id\":50,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"state\":1,\"subChapters\":[],\"title\":\"我的区长父亲\"}}', 0, NULL, '2025-11-11 18:24:43', 105); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (676, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-11 18:36:18\",\"description\":\"

121212

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":42,\"name\":\"测试postMessage\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"subjectId\":1,\"tagIds\":\"\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-11 18:36:18\",\"description\":\"

121212

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":42,\"name\":\"测试postMessage\",\"params\":{},\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"state\":1,\"subjectId\":1,\"viewCount\":0}}', 0, NULL, '2025-11-11 18:36:19', 355); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (677, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"coverImgPath\":\"\",\"description\":\"

121212

\",\"fileConfig\":\"[]\",\"id\":42,\"name\":\"测试postMessage\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"subjectId\":1,\"tagIds\":\"\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 18:36:29\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"categoryId\":1,\"description\":\"

121212

\",\"fileConfig\":\"[]\",\"id\":42,\"name\":\"测试postMessage\",\"params\":{},\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"state\":1,\"subjectId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 18:36:29\"}}', 0, NULL, '2025-11-11 18:36:29', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (678, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-11 18:44:29\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":43,\"name\":\"测试postMessage22\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"sourceUrl\":\"\",\"state\":1,\"tagIds\":\"\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"admin\",\"createBy\":\"1\",\"createTime\":\"2025-11-11 18:44:29\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":43,\"name\":\"测试postMessage22\",\"params\":{},\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"source\":\"1\",\"state\":1,\"viewCount\":0}}', 0, NULL, '2025-11-11 18:44:29', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (679, 1, '基础试卷', 5, 'com.study.examine.controller.BaseExamInfoController.export()', 'POST', 1, 'admin', NULL, '/examInfo/export', '127.0.0.1', '', '{\"name\":\"\",\"pageSize\":\"10\",\"isAsc\":\"asc\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"0\"}', NULL, 1, '\n### Error querying database. Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'status\' in where clause is ambiguous\n### The error may exist in URL [jar:file:/www/java/study-modules-examine.jar!/BOOT-INF/lib/study-common-mapper-3.6.6.jar!/mapper/examine/BaseExamInfoMapper.xml]\n### The error may involve com.study.examine.mapper.BaseExamInfoMapper.selectBaseExamInfoList-Inline\n### The error occurred while setting parameters\n### SQL: select bei.id, bei.sch_id, bei.exam_title, bei.exam_course_id, bei.exam_rank, bei.single_num, bei.single_mark, bei.multiple_num, bei.multiple_mark, bei.estimate_num, bei.estimate_mark, bei.full_mark, bei.pass_mark, bei.use_number, bei.question_count, bei.status, bei.exam_time, bei.create_by, su.user_name as create_by_name, bei.create_time, bei.update_by, bei.update_time, bei.remark from view_exam_info bei left join sys_user su on bei.create_by = su.user_id WHERE status = ?\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'status\' in where clause is ambiguous\n; Column \'status\' in where clause is ambiguous; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'status\' in where clause is ambiguous', '2025-11-11 18:45:38', 51); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (680, 1, '基础试卷', 5, 'com.study.examine.controller.BaseExamInfoController.export()', 'POST', 1, 'admin', NULL, '/examInfo/export', '127.0.0.1', '', '{\"name\":\"\",\"pageSize\":\"10\",\"isAsc\":\"asc\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-11-11 18:47:09', 2293); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (681, 1, '基础试卷', 5, 'com.study.examine.controller.BaseExamInfoController.export()', 'POST', 1, 'admin', NULL, '/examInfo/export', '0:0:0:0:0:0:0:1%0', '', '{\"name\":\"\",\"pageSize\":\"10\",\"isAsc\":\"asc\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-11-11 18:56:33', 939); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (682, 1, '基础题库', 6, 'com.study.examine.controller.BaseExamQuestionController.importData()', 'POST', 1, 'admin', NULL, '/examQuestion/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、题目 导入失败:nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property=\'questionDesc\', mode=IN, javaType=class java.lang.Long, jdbcType=null, numericScale=null, resultMapId=\'null\', jdbcTypeName=\'null\', expression=\'null\'}. Cause: org.apache.ibatis.type.TypeException: Error setting non null for parameter #1 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Long', '2025-11-11 19:48:57', 1368); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (683, 1, '基础题库', 6, 'com.study.examine.controller.BaseExamQuestionController.importData()', 'POST', 1, 'admin', NULL, '/examQuestion/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、题目 啊是的啊1231 导入失败:nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property=\'questionDesc\', mode=IN, javaType=class java.lang.Long, jdbcType=null, numericScale=null, resultMapId=\'null\', jdbcTypeName=\'null\', expression=\'null\'}. Cause: org.apache.ibatis.type.TypeException: Error setting non null for parameter #1 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Long', '2025-11-11 19:49:27', 144); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (684, 1, '基础题库', 6, 'com.study.examine.controller.BaseExamQuestionController.importData()', 'POST', 1, 'admin', NULL, '/examQuestion/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、题目 啊是的啊1231 导入失败:nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property=\'questionDesc\', mode=IN, javaType=class java.lang.Long, jdbcType=null, numericScale=null, resultMapId=\'null\', jdbcTypeName=\'null\', expression=\'null\'}. Cause: org.apache.ibatis.type.TypeException: Error setting non null for parameter #1 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Long', '2025-11-11 20:03:02', 83); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (685, 1, '基础题库', 6, 'com.study.examine.controller.BaseExamQuestionController.importData()', 'POST', 1, 'admin', NULL, '/examQuestion/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、题目 啊是的啊1231 导入失败:nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property=\'questionDesc\', mode=IN, javaType=class java.lang.Long, jdbcType=null, numericScale=null, resultMapId=\'null\', jdbcTypeName=\'null\', expression=\'null\'}. Cause: org.apache.ibatis.type.TypeException: Error setting non null for parameter #1 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Long', '2025-11-11 20:18:33', 95639); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (686, 1, '基础题库', 6, 'com.study.examine.controller.BaseExamQuestionController.importData()', 'POST', 1, 'admin', NULL, '/examQuestion/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、题目 啊是的啊1231 导入失败:status: 题目状态不能为空', '2025-11-11 20:20:02', 3842); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (687, 1, '基础题库', 6, 'com.study.examine.controller.BaseExamQuestionController.importData()', 'POST', 1, 'admin', NULL, '/examQuestion/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、题目 啊是的啊1231 的关联课程不正确', '2025-11-11 20:25:22', 5021); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (688, 1, '基础题库', 6, 'com.study.examine.controller.BaseExamQuestionController.importData()', 'POST', 1, 'admin', NULL, '/examQuestion/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、题目 啊是的啊1231 导入成功\",\"code\":200}', 0, NULL, '2025-11-11 20:25:58', 8147); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (689, 1, '基础题库', 2, 'com.study.examine.controller.BaseExamQuestionController.edit()', 'PUT', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"111111\",\"id\":952,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"222222\",\"id\":953,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"description\":\"啊飒飒实打实\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 15:09:11\",\"id\":10328,\"params\":{},\"questionAnalysis\":\"a\",\"questionAnswer\":\"B\",\"questionCourseId\":3,\"questionCourseName\":\"-\",\"questionDesc\":\"test5\",\"questionKnowledge\":\"b\",\"questionRank\":\"0.6\",\"questionScore\":\"2\",\"questionType\":\"1\",\"schId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"status\":\"0\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 22:18:50\",\"useNumber\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-11 22:18:51', 372); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (690, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"createTime\":\"2025-11-12 14:28:39\",\"id\":150,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"createTime\":\"2025-11-12 14:28:40\",\"id\":151,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-12 14:28:40\",\"id\":152,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-07 17:55:23\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-11 17:05:43\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":24,\\\"name\\\":\\\"test\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

111

\\\",\\\"viewCount\\\":6,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":32065481,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762851694309,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":0,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":32065481,\\\"size\\\":32065481,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"test\\\"},{\\\"createBy\\\":null,\\', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-12 14:28:40', 749); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (691, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":24,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":40,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":8}', 0, NULL, '2025-11-12 14:28:41', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (692, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"createTime\":\"2025-11-12 14:28:57\",\"id\":161,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"createTime\":\"2025-11-12 14:28:57\",\"id\":162,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-12 14:28:57\",\"id\":163,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-07 17:55:23\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-11 17:05:43\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":24,\\\"name\\\":\\\"test\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

111

\\\",\\\"viewCount\\\":6,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":32065481,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762851694309,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":0,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":32065481,\\\"size\\\":32065481,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"test\\\"},{\\\"createBy\\\":null,\\', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-12 14:28:58', 752); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (693, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":24,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":40,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10326,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10325,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10324,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":4}', 0, NULL, '2025-11-12 14:28:58', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (694, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":150,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 14:29:20\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":151,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 14:29:20\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":152,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 14:29:22\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-07 17:55:23\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-11 17:05:43\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":24,\\\"name\\\":\\\"test\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

111

\\\",\\\"viewCount\\\":6,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":32065481,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762851694309,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":0,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":32065481,\\\"size\\\":32065481,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"test\\\"},{\\\"createBy\\\":null,\\', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-12 14:29:27', 7007); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (695, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":24,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":40,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":4}', 0, NULL, '2025-11-12 14:29:27', 115); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (696, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":24,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":40,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":8}', 0, NULL, '2025-11-12 14:40:24', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (697, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

1111

\",\"id\":150,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 14:40:23\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":151,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 14:40:23\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":152,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 14:40:23\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-07 17:55:23\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-11 17:05:43\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":24,\\\"name\\\":\\\"test\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

111

\\\",\\\"viewCount\\\":6,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":32065481,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762851694309,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":0,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":32065481,\\\"size\\\":32065481,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"test\\\"},{\\\"createBy\\\":null,\\', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-12 14:40:24', 712); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (698, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

111

\",\"createTime\":\"2025-11-12 14:41:44\",\"id\":172,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"createTime\":\"2025-11-12 14:41:44\",\"id\":173,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"createTime\":\"2025-11-12 14:41:44\",\"id\":174,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-07 17:55:23\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-11 17:05:43\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":24,\\\"name\\\":\\\"test\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

111

\\\",\\\"viewCount\\\":6,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":32065481,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762851694309,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":1,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":32065481,\\\"size\\\":32065481,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"test\\\"},{\\\"createBy\\\":null,\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-12 14:41:45', 1067); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (699, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":24,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":40,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-12 14:41:45', 39); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (700, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

111

\",\"id\":172,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 14:42:02\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":173,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 14:42:02\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":174,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 14:42:02\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-07 17:55:23\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-11 17:05:43\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":24,\\\"name\\\":\\\"test\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

111

\\\",\\\"viewCount\\\":6,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":32065481,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762851694309,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":1,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":32065481,\\\"size\\\":32065481,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"test\\\"},{\\\"createBy\\\":null,\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-12 14:42:03', 999); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (701, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":24,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":40,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10326,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10325,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10324,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":4}', 0, NULL, '2025-11-12 14:42:03', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (702, 2, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2174', '127.0.0.1', '', '2174', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-12 14:44:31', 169); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (703, 2, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_message\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-12 14:46:23', 1189); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (704, 2, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"message\",\"className\":\"BaseMessage\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1380,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":94,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1381,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":94,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Title\",\"columnComment\":\"标题\",\"columnId\":1382,\"columnName\":\"title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"title\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":94,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Content\",\"columnComment\":\"消息内容\",\"columnId\":1383,\"columnName\":\"content\",\"columnType\":\"text\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"editor\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"content\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryTyp', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-12 14:49:30', 1082); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (705, 2, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_message\"}', NULL, 0, NULL, '2025-11-12 14:49:34', 405); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (706, 2, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"message\",\"className\":\"BaseMessage\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1380,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":94,\"updateBy\":\"\",\"updateTime\":\"2025-11-12 14:49:29\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1381,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":94,\"updateBy\":\"\",\"updateTime\":\"2025-11-12 14:49:29\",\"usableColumn\":false},{\"capJavaField\":\"Title\",\"columnComment\":\"标题\",\"columnId\":1382,\"columnName\":\"title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"title\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":94,\"updateBy\":\"\",\"updateTime\":\"2025-11-12 14:49:29\",\"usableColumn\":false},{\"capJavaField\":\"Content\",\"columnComment\":\"消息内容\",\"columnId\":1383,\"columnName\":\"content\",\"columnType\":\"text\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"editor\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-12 16:23:35', 1013); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (707, 2, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_message\"}', NULL, 0, NULL, '2025-11-12 16:23:39', 170); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (708, 2, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"message\",\"className\":\"BaseMessage\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"主键\",\"columnId\":1380,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":94,\"updateBy\":\"\",\"updateTime\":\"2025-11-12 16:23:34\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1381,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":94,\"updateBy\":\"\",\"updateTime\":\"2025-11-12 16:23:34\",\"usableColumn\":false},{\"capJavaField\":\"Title\",\"columnComment\":\"标题\",\"columnId\":1382,\"columnName\":\"title\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"title\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":94,\"updateBy\":\"\",\"updateTime\":\"2025-11-12 16:23:34\",\"usableColumn\":false},{\"capJavaField\":\"Content\",\"columnComment\":\"消息内容\",\"columnId\":1383,\"columnName\":\"content\",\"columnType\":\"text\",\"createBy\":\"admin\",\"createTime\":\"2025-11-12 14:46:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"editor\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-12 16:27:34', 1040); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (709, 2, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_message\"}', NULL, 0, NULL, '2025-11-12 16:27:40', 123); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (710, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

111

\",\"id\":172,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 16:36:52\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":173,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 16:36:52\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":174,\"params\":{},\"schoolId\":1,\"sortName\":\"create_time\",\"sortOrder\":\"desc\",\"updateTime\":\"2025-11-12 16:36:52\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-07 17:55:23\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-11 17:05:43\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\\"id\\\":24,\\\"name\\\":\\\"test\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

111

\\\",\\\"viewCount\\\":6,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/11/【小梨老师爱语文】《坐井观天》电子板贴_20251111170133A002.pptx\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":32065481,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762851694309,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":1,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":32065481,\\\"size\\\":32065481,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"test\\\"},{\\\"createBy\\\":null,\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-12 16:36:53', 694); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (711, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":24,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":40,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10327,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10330,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10328,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10321,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10318,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10329,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10322,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10319,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10326,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10325,\"sortName\":\"create_time\",\"sortOrder\":\"desc\"},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\"', '{\"msg\":\"操作成功\",\"code\":200,\"data\":9}', 0, NULL, '2025-11-12 16:36:53', 97); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (712, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"information/message/index\",\"createTime\":\"2025-11-12 16:04:32\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2175,\"menuName\":\"系统消息\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2172,\"path\":\"message\",\"perms\":\"information:message:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-12 16:42:50', 199); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (713, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-12 16:04:32\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2176,\"menuName\":\"系统消息查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2175,\"path\":\"#\",\"perms\":\"information:message:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-12 16:43:11', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (714, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-12 16:04:32\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2177,\"menuName\":\"系统消息新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2175,\"path\":\"#\",\"perms\":\"information:message:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-12 16:43:19', 255); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (715, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-12 16:04:32\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2178,\"menuName\":\"系统消息修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2175,\"path\":\"#\",\"perms\":\"information:message:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-12 16:43:28', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (716, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-12 16:04:32\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2179,\"menuName\":\"系统消息删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2175,\"path\":\"#\",\"perms\":\"information:message:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-12 16:43:37', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (717, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":101,\"content\":\"

111

\",\"id\":172,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-12 17:22:38\"},{\"chapterId\":42,\"chapterType\":102,\"content\":\"

2222

\",\"id\":173,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-12 17:22:38\"},{\"chapterId\":42,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"2\\\",\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-10 17:37:01\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"admin\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"Python编程入门导论.mp4\\\",\\\"viewCount\\\":1,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":2,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"4\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"视频\\\",\\\"referenceCount\\\":2}\",\"id\":174,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-12 17:22:38\"},{\"chapterId\":42,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-07 17:55:23\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-11 17:05:43\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"sortName\\\":\\\"create_time\\\",\\\"sortOrder\\\":\\\"desc\\\",\\', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-12 17:22:41', 2201); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (718, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":42,\"chapterType\":2,\"params\":{},\"resourceId\":16},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":24},{\"chapterId\":42,\"chapterType\":1,\"params\":{},\"resourceId\":20},{\"chapterId\":42,\"chapterType\":7,\"params\":{},\"resourceId\":25},{\"chapterId\":42,\"chapterType\":9,\"params\":{},\"resourceId\":27},{\"chapterId\":42,\"chapterType\":10,\"params\":{},\"resourceId\":31},{\"chapterId\":42,\"chapterType\":5,\"params\":{},\"resourceId\":29},{\"chapterId\":42,\"chapterType\":8,\"params\":{},\"resourceId\":33},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10327},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10330},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10328},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10318},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10329},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10319},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10326},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10325},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10324},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":42,\"chapterType\":104,\"params\":{},\"questionId\":10320}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":2}', 0, NULL, '2025-11-12 17:22:41', 151); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (719, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":100,\"roleKey\":\"sys_teacher\",\"roleName\":\"系统老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 09:19:14', 334); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (720, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":100,\"roleKey\":\"sys_teacher\",\"roleName\":\"系统老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 09:19:14', 338); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (721, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":1,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052],\"params\":{},\"roleId\":102,\"roleKey\":\"teacher\",\"roleName\":\"老师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 09:19:24', 321); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (722, 2, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,100,1000,1001,1002,1003,1004,1005,1006,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055],\"params\":{},\"roleId\":112,\"roleKey\":\"111\",\"roleName\":\"111\",\"roleSort\":0,\"roleType\":1,\"schoolId\":2,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 09:19:39', 321); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (723, 2, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '王五', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

测试01

\",\"courseState\":1,\"courseType\":\"1,2,3,4\",\"coverUrl\":\"/statics/2025/11/13/quanjing_20251113092106A001.jpg\",\"createBy\":\"101\",\"createTime\":\"2025-11-13 09:21:08\",\"id\":11,\"isUse\":1,\"label\":\"测试01\",\"name\":\"我的测试课程\",\"params\":{},\"resource\":\"[]\",\"reviewState\":1,\"schoolId\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 09:21:11', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (724, 2, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '王五', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

测试二

\",\"courseState\":1,\"courseType\":\"1,2,3\",\"coverUrl\":\"/statics/2025/11/13/PixPin_2025-11-03_16-37-43_20251113092138A002.png\",\"createBy\":\"101\",\"createTime\":\"2025-11-13 09:21:40\",\"id\":12,\"isUse\":1,\"label\":\"测试二\",\"name\":\"测试二\",\"params\":{},\"resource\":\"[]\",\"reviewState\":1,\"schoolId\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 09:21:43', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (725, 2, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '王五', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

测试三

\",\"courseState\":1,\"courseType\":\"1,2,4\",\"coverUrl\":\"/statics/2025/11/13/3_20251113092222A003.png\",\"createBy\":\"101\",\"createTime\":\"2025-11-13 09:22:23\",\"id\":13,\"isUse\":1,\"label\":\"测试三\",\"name\":\"测试三\",\"params\":{},\"resource\":\"[]\",\"reviewState\":4,\"schoolId\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 09:22:25', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (726, 1, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, 'admin', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

《总书记讲党史故事》大型党史系列动画片以习近平总书记讲述过的许多感人至深的党史故事,党史中蕴含的智慧和力量为内容主线,运用图文条漫、动画视频等形式创新讲述故事。深入发掘故事中的核心思想理念,积极引领广大党员、干部加强学习,不断提高自己、丰富自己,提高工作水平和质量,把握历史规律,更加坚定走好中国道路、实现中华民族伟大复兴的信心和决心,奋进新征程、建功新时代。

\",\"courseState\":1,\"courseType\":\"1,2\",\"coverUrl\":\"/statics/2025/10/28/8_20251028181815A004.png\",\"createBy\":\"1\",\"id\":4,\"isUse\":1,\"label\":\"二十大精神 理论教学\",\"name\":\"习近平总书记讲党史故事\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"1_20251027114336A005.zip\\\",\\\"url\\\":\\\"/statics/2025/10/27/1_20251027114336A005.zip\\\",\\\"size\\\":978686,\\\"uid\\\":1761536616472,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":2,\"schoolId\":1,\"updateTime\":\"2025-11-13 09:22:58\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 09:23:00', 68); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (727, 1, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, 'admin', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

实现中华民族伟大复兴的中国梦,必须弘扬中国精神,这就是以爱国主义为核心的民族精神和以改革创新为核心的时代精神。中国精神贯穿于中华民族五千年历史、积蕴于近现代中华民族复兴历程,特别是在中国的快速崛起中迸发出来的具有很强的民族集聚、动员与感召效应的精神及其气象,是中国文化软实力的重要显示。

习近平总书记在第十二届全国人民代表大会第一次会议上指出,中国精神是凝心聚力的兴国之魂、强国之魂。爱国主义始终是把中华民族坚强团结在一起的精神力量,改革创新始终是鞭策我们在改革开放中与时俱进的精神力量。 [1] 2015年1月19日,从中央政府门户网站了解到,教育部发布的《中等职业学校德育大纲(2014年修订)》把中国精神教育纳入其中。要求加强以爱国主义为核心的民族精神教育,加强以改革创新为核心的时代精神教育,加强中华优秀传统文化教育以及中共党史与国情教育。

\",\"courseState\":1,\"courseType\":\"1,2\",\"coverUrl\":\"/statics/2025/10/28/6_20251028181826A005.png\",\"createBy\":\"1\",\"id\":5,\"isUse\":1,\"label\":\"二十大精神,理论教学\",\"name\":\"中国精神\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"1_20251027121102A008.zip\\\",\\\"url\\\":\\\"/statics/2025/10/27/1_20251027121102A008.zip\\\",\\\"size\\\":978686,\\\"uid\\\":1761538262243,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":2,\"schoolId\":1,\"updateTime\":\"2025-11-13 09:23:03\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 09:23:05', 352); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (728, 1, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, 'admin', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

111

\",\"courseState\":1,\"courseType\":\"\",\"coverUrl\":\"/statics/2025/11/01/281b57ff8759a5cc9bd0802be68e00e9_20251101234505A007.png\",\"createBy\":\"1\",\"id\":9,\"isUse\":1,\"label\":\"\",\"name\":\"改革开放四十周年成就展\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"《草船借箭》电子板贴_20251101234738A008.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/01/《草船借箭》电子板贴_20251101234738A008.pptx\\\",\\\"size\\\":569676,\\\"uid\\\":1762012058456,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":2,\"schoolId\":1,\"updateTime\":\"2025-11-13 09:23:11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 09:23:13', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (729, 2, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '王五', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

我的测试4

\",\"courseState\":1,\"courseType\":\"2\",\"coverUrl\":\"/statics/2025/11/13/1_20251113101659A001.png\",\"createBy\":\"101\",\"createTime\":\"2025-11-13 10:17:16\",\"id\":14,\"isUse\":1,\"label\":\"我的测试4\",\"name\":\"我的测试4\",\"params\":{},\"resource\":\"[]\",\"reviewState\":1,\"schoolId\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 10:17:19', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (730, 2, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '王五', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

我的测试5

\",\"courseState\":1,\"courseType\":\"1,2,4\",\"coverUrl\":\"/statics/2025/11/13/2_20251113101729A002.png\",\"createBy\":\"101\",\"createTime\":\"2025-11-13 10:17:34\",\"id\":15,\"isUse\":1,\"label\":\"我的测试5\",\"name\":\"我的测试5\",\"params\":{},\"resource\":\"[]\",\"reviewState\":1,\"schoolId\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 10:17:36', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (731, 2, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '王五', NULL, '/course/batchReview', '127.0.0.1', '', '{\"courseIds\":[12],\"params\":{},\"reviewDesc\":\"\",\"reviewState\":2}', NULL, 1, 'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'reviewDesc\' not found. Available parameters are [arg2, arg1, arg0, param3, param1, param2]', '2025-11-13 11:05:45', 25); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (732, 2, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '王五', NULL, '/course/batchReview', '127.0.0.1', '', '{\"courseIds\":[12],\"params\":{},\"reviewDesc\":\"大\",\"reviewState\":3}', NULL, 1, 'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'reviewDesc\' not found. Available parameters are [arg2, arg1, arg0, param3, param1, param2]', '2025-11-13 11:06:54', 3); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (733, 2, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '王五', NULL, '/course/batchReview', '127.0.0.1', '', '{\"courseIds\":[12],\"params\":{},\"reviewDesc\":\"ggg\",\"reviewState\":3}', NULL, 1, 'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'reviewDesc\' not found. Available parameters are [arg2, arg1, arg0, param3, param1, param2]', '2025-11-13 11:11:06', 27); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (734, 2, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '王五', NULL, '/course/batchReview', '127.0.0.1', '', '{\"courseIds\":[12],\"params\":{},\"reviewDesc\":\"ggg\",\"reviewState\":3}', NULL, 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'review_desc\' in \'field list\'\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/teaching/BaseCourseMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: UPDATE base_course SET review_state = ? ,review_desc = ? WHERE id IN ( ? )\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'review_desc\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'review_desc\' in \'field list\'', '2025-11-13 11:12:56', 151); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (735, 2, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '王五', NULL, '/course/batchReview', '127.0.0.1', '', '{\"courseIds\":[12],\"params\":{},\"reviewDesc\":\"ggg\",\"reviewState\":3}', NULL, 1, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'review_desc\' in \'field list\'\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/teaching/BaseCourseMapper.xml]\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: UPDATE base_course SET review_state = ? ,review_desc = ? WHERE id IN ( ? )\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'review_desc\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'review_desc\' in \'field list\'', '2025-11-13 11:13:36', 148); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (736, 2, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '王五', NULL, '/course/batchReview', '127.0.0.1', '', '{\"courseIds\":[12],\"params\":{},\"reviewDesc\":\"ggg\",\"reviewState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 11:22:05', 168); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (737, 2, '课程信息', 5, 'com.study.teaching.controller.BaseCourseController.export()', 'POST', 1, '王五', NULL, '/course/export', '127.0.0.1', '', '{\"excludeDraft\":\"true\",\"schoolId\":\"2\",\"pageSize\":\"10\",\"keyword\":\"\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-13 11:40:17', 1006); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (738, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"


\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 11:51:09\",\"id\":3,\"msgType\":1,\"params\":{},\"sendType\":1,\"title\":\"消息1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 11:51:10', 963); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (739, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

万里长城永不倒

千里黄河水滔滔

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 11:51:09\",\"creatorName\":\"admin\",\"id\":3,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"消息1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 14:28:01\"}', NULL, 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 \'like concat(\'%\', \'消息1\', \'%\'),\n content = \'

万里�\' at line 3\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\information\\BaseMessageMapper.xml]\r\n### The error may involve com.study.information.mapper.BaseMessageMapper.updateBaseMessage-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update base_message SET sch_id = ?, title like concat(\'%\', ?, \'%\'), content = ?, msg_type = ?, send_type = ?, msg_state = ?, send_state = ?, is_del = ?, create_by = ?, create_time = ?, update_by = ?, update_time = ? where id = ?\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 \'like concat(\'%\', \'消息1\', \'%\'),\n content = \'

万里�\' at line 3\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 \'like concat(\'%\', \'消息1\', \'%\'),\n content = \'

万里�\' at line 3', '2025-11-13 14:28:02', 638); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (740, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

万里长城永不倒

千里黄河水滔滔

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 11:51:09\",\"creatorName\":\"admin\",\"id\":3,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"消息1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 14:28:33\"}', NULL, 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 \'like concat(\'%\', \'消息1\', \'%\'),\n content = \'

万里�\' at line 3\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\information\\BaseMessageMapper.xml]\r\n### The error may involve com.study.information.mapper.BaseMessageMapper.updateBaseMessage-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update base_message SET sch_id = ?, title like concat(\'%\', ?, \'%\'), content = ?, msg_type = ?, send_type = ?, msg_state = ?, send_state = ?, is_del = ?, create_by = ?, create_time = ?, update_by = ?, update_time = ? where id = ?\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 \'like concat(\'%\', \'消息1\', \'%\'),\n content = \'

万里�\' at line 3\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 \'like concat(\'%\', \'消息1\', \'%\'),\n content = \'

万里�\' at line 3', '2025-11-13 14:28:33', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (741, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

万里长城永不倒

千里黄河水滔滔

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 11:51:09\",\"creatorName\":\"admin\",\"id\":3,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"消息1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 14:29:15\"}', NULL, 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 \'like concat(\'%\', \'消息1\', \'%\'),\n content = \'

万里�\' at line 3\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\information\\BaseMessageMapper.xml]\r\n### The error may involve com.study.information.mapper.BaseMessageMapper.updateBaseMessage-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update base_message SET sch_id = ?, title like concat(\'%\', ?, \'%\'), content = ?, msg_type = ?, send_type = ?, msg_state = ?, send_state = ?, is_del = ?, create_by = ?, create_time = ?, update_by = ?, update_time = ? where id = ?\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 \'like concat(\'%\', \'消息1\', \'%\'),\n content = \'

万里�\' at line 3\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 \'like concat(\'%\', \'消息1\', \'%\'),\n content = \'

万里�\' at line 3', '2025-11-13 14:29:15', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (742, 2, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, '王五', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_class_sch_week,base_class_sch_teacher,base_class_sch_org,base_class_sch\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:30:35', 2001); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (743, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

万里长城永不倒

千里黄河水滔滔

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 11:51:09\",\"creatorName\":\"admin\",\"id\":3,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"消息1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 14:32:27\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:32:28', 233); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (744, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, '王五', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:01:36\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2013,\"menuName\":\"上课管理\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":2002,\"path\":\"/homeworkMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"王五\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:34:29', 97); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (745, 2, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, '王五', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:02:25\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2014,\"menuName\":\"作业管理\",\"menuType\":\"M\",\"orderNum\":3,\"params\":{},\"parentId\":2002,\"path\":\"/teachStatisticsMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"王五\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:34:50', 101); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (746, 2, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, '王五', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"classSchedule\",\"className\":\"BaseClassSch\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1396,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:33\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":95,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1397,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:33\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":95,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"CourseId\",\"columnComment\":\"课程ID\",\"columnId\":1398,\"columnName\":\"course_id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:33\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"courseId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":95,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"CourseName\",\"columnComment\":\"课程名称\",\"columnId\":1399,\"columnName\":\"course_name\",\"columnType\":\"varchar(512)\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:33\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"textarea\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"courseName\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:35:45', 1130); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (747, 2, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, '王五', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"classScheduleOrg\",\"className\":\"BaseClassSchOrg\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1413,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:34\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":96,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ClassSchId\",\"columnComment\":\"上课ID\",\"columnId\":1414,\"columnName\":\"class_sch_id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:34\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"classSchId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":96,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"OrgId\",\"columnComment\":\"班级ID\",\"columnId\":1415,\"columnName\":\"org_id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:34\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"orgId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":96,\"updateBy\":\"\",\"usableColumn\":false}],\"crud\":true,\"functionAuthor\":\"陕西研筑信息技术\",\"functionName\":\"上课-班级信息\",\"genPath\":\"/\",\"genType\":\"0\",\"moduleName\":\"teaching\",\"options\":\"{\\\"parentMenuId\\\":2013}\",\"packageName\":\"com.study.teaching\",\"params\":{\"parentMenuId\":2013},\"parentMenuId\":2013,\"sub\":false,\"tableComment\":\"上课-班级信息\",\"tableId\":96,\"tableName\":\"base_class_sch_org\",\"tplCategory\":\"crud\",\"tplWebType\":\"\",\"tree\":false}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:36:40', 324); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (748, 2, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, '王五', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"classScheduleTeacher\",\"className\":\"BaseClassSchTeacher\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1416,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:34\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":97,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ClassSchId\",\"columnComment\":\"上课ID\",\"columnId\":1417,\"columnName\":\"class_sch_id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:34\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"classSchId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":97,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"UserId\",\"columnComment\":\"老师ID\",\"columnId\":1418,\"columnName\":\"user_id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:34\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"userId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":97,\"updateBy\":\"\",\"usableColumn\":false}],\"crud\":true,\"functionAuthor\":\"陕西研筑信息技术\",\"functionName\":\"上课-老师信息\",\"genPath\":\"/\",\"genType\":\"0\",\"moduleName\":\"teaching\",\"options\":\"{\\\"parentMenuId\\\":2013}\",\"packageName\":\"com.study.teaching\",\"params\":{\"parentMenuId\":2013},\"parentMenuId\":2013,\"sub\":false,\"tableComment\":\"上课-老师信息\",\"tableId\":97,\"tableName\":\"base_class_sch_teacher\",\"tplCategory\":\"crud\",\"tplWebType\":\"\",\"tree\":false}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:37:28', 388); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (749, 2, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, '王五', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"classScheduleWeek\",\"className\":\"BaseClassSchWeek\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1419,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:34\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":98,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ClassSchId\",\"columnComment\":\"上课ID\",\"columnId\":1420,\"columnName\":\"class_sch_id\",\"columnType\":\"bigint\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:34\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"classSchId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":98,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"WeekInfo\",\"columnComment\":\"周几1-周一2-周二\",\"columnId\":1421,\"columnName\":\"week_info\",\"columnType\":\"int\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:34\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"weekInfo\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":98,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"StartTime\",\"columnComment\":\"开始时间\",\"columnId\":1422,\"columnName\":\"start_time\",\"columnType\":\"time\",\"createBy\":\"王五\",\"createTime\":\"2025-11-13 14:30:34\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"datetime\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"startTime\",\"javaType\":\"Date\",\"list\":true,\"params\":{},\"pk\":false,\"query\":t', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:38:15', 449); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (750, 2, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, '王五', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_class_sch,base_class_sch_org,base_class_sch_teacher,base_class_sch_week\"}', NULL, 0, NULL, '2025-11-13 14:38:42', 307); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (751, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

万里长城永不倒

千里黄河水滔滔

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 11:51:09\",\"creatorName\":\"admin\",\"id\":3,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"消息1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 14:38:48\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:38:48', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (752, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

万里长城永不倒

千里黄河水滔滔

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 11:51:09\",\"creatorName\":\"admin\",\"id\":3,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"消息1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 14:39:14\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:39:14', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (753, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

万里长城永不倒

千里黄河水滔滔

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 11:51:09\",\"creatorName\":\"admin\",\"id\":3,\"isDel\":0,\"msgState\":1,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"消息1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 14:40:16\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:40:16', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (754, 2, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, '王五', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-13 14:55:12\",\"endDate\":\"2025-11-30\",\"id\":28,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":27,\"schoolId\":2,\"startDate\":\"2025-11-01\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:55:14', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (755, 2, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, '王五', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-13 14:55:31\",\"endDate\":\"2025-12-31\",\"id\":29,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第二学期\",\"params\":{},\"pid\":27,\"schoolId\":2,\"startDate\":\"2025-12-01\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:55:33', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (756, 2, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, '王五', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":28,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":2,\"updateTime\":\"2025-11-13 14:55:34\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:55:37', 120); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (757, 2, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, '王五', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-13 14:55:48\",\"id\":30,\"isCurrent\":0,\"isDel\":0,\"isSemester\":0,\"name\":\"2026学年\",\"params\":{},\"schoolId\":2,\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:55:50', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (758, 2, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, '王五', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-13 14:56:13\",\"endDate\":\"2026-01-31\",\"id\":31,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":30,\"schoolId\":2,\"startDate\":\"2026-01-01\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 14:56:15', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (759, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

111

\",\"createTime\":\"2025-11-13 15:05:14\",\"id\":4,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"t1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:05:15', 387); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (760, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

11

\",\"createTime\":\"2025-11-13 15:06:56\",\"id\":5,\"msgState\":0,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"t1\",\"updateBy\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:06:56', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (761, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"


\",\"createTime\":\"2025-11-13 15:09:08\",\"id\":6,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"t1\",\"updateBy\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:09:08', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (762, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"


\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:09:54\",\"id\":7,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"t1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:09:54', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (763, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"


\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:11:12\",\"id\":8,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"t1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:11:12', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (764, 2, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, '王五', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":29,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":2,\"updateTime\":\"2025-11-13 15:16:02\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:16:06', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (765, 2, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"children\":[],\"deptName\":\"马克思主义学院\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"A001\",\"orgDesc\":\"\",\"orgLevel\":1,\"params\":{},\"parentId\":0,\"schId\":2,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"新增部门\'马克思主义学院\'失败,部门名称已存在\",\"code\":500}', 0, NULL, '2025-11-13 15:21:16', 32); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (766, 1, '系统消息', 3, 'com.study.information.controller.BaseMessageController.remove()', 'DELETE', 1, 'admin', NULL, '/message/8', '127.0.0.1', '', '[8]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:25:07', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (767, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"


\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:25:52\",\"id\":9,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:25:52', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (768, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"


\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:25:57\",\"id\":10,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:25:57', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (769, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"


\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:26:04\",\"id\":11,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"3\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:26:04', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (770, 1, '系统消息', 3, 'com.study.information.controller.BaseMessageController.remove()', 'DELETE', 1, 'admin', NULL, '/message/9', '127.0.0.1', '', '[9]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:26:10', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (771, 2, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"马克思主义学院\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"A001\",\"orgDesc\":\"\",\"orgLevel\":1,\"params\":{},\"parentId\":0,\"schId\":2,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:26:18', 105); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (772, 2, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,14\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"计算机应用\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"B001\",\"orgDesc\":\"\",\"orgLevel\":2,\"params\":{},\"parentId\":14,\"schId\":2,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:26:44', 120); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (773, 2, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,14,15\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"2025界\",\"endYear\":\"\",\"enterYear\":\"2025\",\"orderNum\":0,\"orgCode\":\"C001\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":15,\"schId\":2,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:27:05', 121); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (774, 1, '系统消息', 3, 'com.study.information.controller.BaseMessageController.remove()', 'DELETE', 1, 'admin', NULL, '/message/11,10', '127.0.0.1', '', '[11,10]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:27:31', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (775, 2, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":27,\"ancestors\":\"0,14,15,16\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"C2501\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"X001\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":16,\"schId\":2,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:30:00', 123); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (776, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

asdf

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:30:07\",\"id\":12,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 15:30:07\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"t1\"}', '{\"msg\":\"消息发送失败\",\"code\":500}', 0, NULL, '2025-11-13 15:30:07', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (777, 2, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":27,\"ancestors\":\"0,14,15,16\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"C2502\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"X002\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":16,\"schId\":2,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:30:13', 128); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (778, 2, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,14,15\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"2026界\",\"endYear\":\"\",\"enterYear\":\"2026\",\"orderNum\":0,\"orgCode\":\"F002\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":15,\"schId\":2,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:30:33', 123); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (779, 2, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":30,\"ancestors\":\"0,14,15,19\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"C2601\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"X003\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":19,\"schId\":2,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:30:48', 130); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (780, 2, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":30,\"ancestors\":\"0,14,15,19\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"C2602\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"X003\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":19,\"schId\":2,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:31:05', 826); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (781, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

12

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:37:46\",\"id\":13,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 15:37:46\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"t2\"}', '{\"msg\":\"消息发送失败\",\"code\":-1}', 0, NULL, '2025-11-13 15:37:47', 186); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (782, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

12

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:39:17\",\"id\":14,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 15:39:17\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\"}', '{\"msg\":\"消息发送失败\",\"code\":-1}', 0, NULL, '2025-11-13 15:39:17', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (783, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

1221

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:39:57\",\"id\":15,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 15:39:57\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"1221\"}', '{\"msg\":\"消息发送失败\",\"code\":-1}', 0, NULL, '2025-11-13 15:39:57', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (784, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

12

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:40:15\",\"id\":16,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 15:40:15\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\"}', '{\"msg\":\"消息发送失败\",\"code\":-1}', 0, NULL, '2025-11-13 15:40:15', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (785, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

12

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:41:48\",\"id\":17,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 15:41:48\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\"}', '{\"msg\":\"消息发送失败\",\"code\":-1}', 0, NULL, '2025-11-13 15:41:49', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (786, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

12

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:43:48\",\"id\":18,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 15:43:43\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\"}', '{\"msg\":\"消息发送失败\",\"code\":-1}', 0, NULL, '2025-11-13 15:44:11', 33344); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (787, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

12

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:49:13\",\"id\":19,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 15:49:13\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\"}', '{\"msg\":\"消息发送失败\",\"code\":200,\"sentFailed\":true}', 0, NULL, '2025-11-13 15:49:14', 3328); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (788, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

12

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 15:56:10\",\"id\":20,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 15:56:10\",\"schId\":1,\"sendState\":0,\"sendTime\":\"2025-11-13\",\"sendType\":2,\"title\":\"12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 15:56:10', 125); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (789, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

sadf

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 16:21:50\",\"id\":21,\"msgState\":0,\"msgType\":2,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 16:21:50', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (790, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"information/notice/index\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"思政公告\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2172,\"path\":\"notice\",\"perms\":\"information:notice:list\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 16:33:12', 117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (791, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":14,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-13 17:03:14\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:03:16', 162); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (792, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

222

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 17:03:31\",\"id\":22,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 17:03:31\",\"schId\":1,\"sendState\":0,\"sendTime\":\"2025-11-14\",\"sendType\":2,\"title\":\"111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:03:32', 370); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (793, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

1212

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 17:14:32\",\"id\":23,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 17:14:32\",\"schId\":1,\"sendState\":0,\"sendTime\":\"2025-11-14 20:14:00\",\"sendType\":2,\"title\":\"121212\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:14:33', 638); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (794, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

sadf

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 16:21:50\",\"creatorName\":\"admin\",\"id\":21,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:18:03\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:18:03', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (795, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

sadf

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 16:21:50\",\"creatorName\":\"admin\",\"id\":21,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:18:15\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:18:15', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (796, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

sadf

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 16:21:50\",\"creatorName\":\"admin\",\"id\":21,\"isDel\":0,\"msgCategory\":2,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:18:29\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:18:29', 68); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (797, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

sadf

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 16:21:50\",\"creatorName\":\"admin\",\"id\":21,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:19:56\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:19:56', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (798, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

sadf

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 16:21:50\",\"creatorName\":\"admin\",\"id\":21,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:22:22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:22:22', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (799, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

sadf

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 16:21:50\",\"creatorName\":\"admin\",\"id\":21,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"12\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:23:35\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:23:35', 15591); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (800, 1, '系统消息', 1, 'com.study.information.controller.BaseMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

1

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 17:24:38\",\"id\":1,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:24:38', 5566); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (801, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

1

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 17:24:38\",\"creatorName\":\"admin\",\"id\":1,\"isDel\":0,\"msgCategory\":1,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendTime\":\"2025-11-13 23:32:00\",\"sendType\":2,\"title\":\"1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:26:18\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:26:18', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (802, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

1

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 17:24:38\",\"creatorName\":\"admin\",\"id\":1,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendTime\":\"2025-11-13 23:32:00\",\"sendType\":2,\"title\":\"1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:26:29\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:26:29', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (803, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

1

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 17:24:38\",\"creatorName\":\"admin\",\"id\":1,\"isDel\":0,\"msgCategory\":1,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendTime\":\"2025-11-13 23:32:00\",\"sendType\":2,\"title\":\"1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:31:59\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:32:00', 146); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (804, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

1

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 17:24:38\",\"creatorName\":\"admin\",\"id\":1,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendTime\":\"2025-11-13 23:32:00\",\"sendType\":2,\"title\":\"1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:32:22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:32:22', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (805, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

1

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 17:24:38\",\"creatorName\":\"admin\",\"id\":1,\"isDel\":0,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendTime\":\"2025-11-13 23:32:00\",\"sendType\":2,\"title\":\"1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:35:41\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:35:41', 206); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (806, 1, '系统消息', 2, 'com.study.information.controller.BaseMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

1

\",\"createBy\":\"1\",\"createTime\":\"2025-11-13 17:24:38\",\"creatorName\":\"admin\",\"id\":1,\"isDel\":0,\"msgCategory\":2,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-13 17:36:11\",\"schId\":1,\"sendState\":0,\"sendTime\":\"2025-11-13 23:32:00\",\"sendType\":2,\"title\":\"1\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:36:11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:36:11', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (807, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T009\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-06\",\"nickName\":\"haha123\",\"params\":{},\"phoneNumber\":\"13388990022\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userId\":113,\"userName\":\"13388990022\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:39:42', 360); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (808, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

12

\",\"createBy\":\"101\",\"createTime\":\"2025-11-13 17:45:20\",\"id\":2,\"msgState\":0,\"msgType\":2,\"params\":{},\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendTime\":\"2025-11-13 17:45:00\",\"sendType\":2,\"title\":\"12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:45:21', 483); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (809, 2, '系统消息', 2, 'com.study.information.controller.BaseNoticeController.edit()', 'PUT', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

12

\",\"createBy\":\"101\",\"createTime\":\"2025-11-13 17:45:20\",\"creatorName\":\"王五\",\"id\":2,\"isDel\":0,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-13 17:45:48\",\"schId\":2,\"sendScope\":2,\"sendState\":0,\"sendTime\":\"2025-11-13 22:45:00\",\"sendType\":2,\"title\":\"12\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-13 17:45:48\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:45:48', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (810, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T9999\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-12\",\"nickName\":\"haha555\",\"params\":{},\"phoneNumber\":\"13388990033\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userId\":114,\"userName\":\"13388990033\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:49:19', 435); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (811, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T0066\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-12\",\"nickName\":\"haha66\",\"params\":{},\"phoneNumber\":\"13388990044\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userId\":115,\"userName\":\"13388990044\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:51:10', 16463); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (812, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T0888\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-04\",\"nickName\":\"haha88\",\"params\":{},\"phoneNumber\":\"13388990088\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userName\":\"13388990088\",\"userType\":\"22\"}', NULL, 1, 'nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named \'usertype\' in \'class com.study.system.api.domain.SysUser\'', '2025-11-13 17:55:00', 248); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (813, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T0888\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-04\",\"nickName\":\"haha88\",\"params\":{},\"phoneNumber\":\"13388990088\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userId\":117,\"userName\":\"13388990088\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-13 17:56:38', 385); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (814, 2, '系统消息', 5, 'com.study.information.controller.BaseNoticeController.export()', 'POST', 1, 'admin', NULL, '/notice/export', '127.0.0.1', '', '{\"schId\":\"2\",\"msgType\":\"2\"}', NULL, 0, NULL, '2025-11-13 18:04:40', 1885); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (815, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

1111sfasdfasdfasdfasdf

\",\"createBy\":\"101\",\"createTime\":\"2025-11-14 09:31:48\",\"id\":3,\"msgState\":0,\"msgType\":2,\"params\":{},\"schId\":2,\"sendState\":0,\"title\":\"n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1n1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 09:31:49', 181); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (816, 2, '系统消息', 3, 'com.study.information.controller.BaseNoticeController.remove()', 'DELETE', 1, 'admin', NULL, '/notice/3', '127.0.0.1', '', '[3]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 09:35:56', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (817, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

sadfsadfsdf

sadfsadf

asdf

sadf

asdf

sda

fsad

fsda

fsad

fsda

f

\",\"createBy\":\"101\",\"createTime\":\"2025-11-14 09:36:32\",\"id\":4,\"msgState\":0,\"msgType\":2,\"params\":{},\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendTime\":\"2025-11-14 09:41:00\",\"sendType\":2,\"title\":\"test111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 09:36:32', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (818, 2, '系统消息', 2, 'com.study.information.controller.BaseNoticeController.edit()', 'PUT', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

sadfsadfsdf

sadfsadf

asdf

sadf

asdf

sda

fsad

fsda

fsad

fsda

f

\",\"createBy\":\"101\",\"createTime\":\"2025-11-14 09:36:32\",\"creatorName\":\"王五\",\"id\":4,\"isDel\":0,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-14 09:37:10\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendTime\":\"2025-11-14 10:41:00\",\"sendType\":2,\"title\":\"test111\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-14 09:37:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 09:37:10', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (819, 2, '系统消息', 5, 'com.study.information.controller.BaseNoticeController.export()', 'POST', 1, 'admin', NULL, '/notice/export', '127.0.0.1', '', '{\"schId\":\"2\",\"msgType\":\"2\"}', NULL, 0, NULL, '2025-11-14 09:38:25', 153); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (820, 2, '系统消息', 5, 'com.study.information.controller.BaseNoticeController.export()', 'POST', 1, 'admin', NULL, '/notice/export', '127.0.0.1', '', '{\"schId\":\"2\",\"msgType\":\"2\"}', NULL, 0, NULL, '2025-11-14 09:39:01', 874); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (821, 2, '系统消息', 5, 'com.study.information.controller.BaseNoticeController.export()', 'POST', 1, 'admin', NULL, '/notice/export', '127.0.0.1', '', '{\"schId\":\"2\",\"msgType\":\"2\",\"isDel\":\"0\"}', NULL, 0, NULL, '2025-11-14 09:42:55', 110); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (822, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"content\":\"

\\\"kejian_20251114112010A005.png\\\"

学号姓名班级
1王二小放牛班

这一条富裕的文本

\",\"createBy\":\"1\",\"hotspotCoverImgPath\":\"/statics/2025/11/14/3d_20251114111950A004.jpg\",\"hotspotSource\":\"新华网\",\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-11-14 11:21:26\",\"schId\":1,\"sendState\":0,\"title\":\"热点1\"}', NULL, 1, 'java.lang.NullPointerException\r\n at com.study.information.controller.BaseHotspotController.doSave(BaseHotspotController.java:95)\r\n at com.study.information.controller.BaseHotspotController.add(BaseHotspotController.java:77)\r\n at com.study.information.controller.BaseHotspotController$$FastClassBySpringCGLIB$$2f95be1c.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\r\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\r\n at sun.reflect.Nativ', '2025-11-14 11:21:27', 270); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (823, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"content\":\"

\\\"kejian_20251114112010A005.png\\\"

学号姓名班级
1王二小放牛班

这一条富裕的文本

\",\"createBy\":\"1\",\"hotspotCoverImgPath\":\"/statics/2025/11/14/3d_20251114111950A004.jpg\",\"hotspotSource\":\"新华网\",\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-11-14 11:21:35\",\"schId\":1,\"sendState\":0,\"title\":\"热点1\"}', NULL, 1, 'java.lang.NullPointerException\r\n at com.study.information.controller.BaseHotspotController.doSave(BaseHotspotController.java:95)\r\n at com.study.information.controller.BaseHotspotController.add(BaseHotspotController.java:77)\r\n at com.study.information.controller.BaseHotspotController$$FastClassBySpringCGLIB$$2f95be1c.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\r\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\r\n at sun.reflect.Nativ', '2025-11-14 11:21:35', 104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (824, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"content\":\"

\\\"kejian_20251114112010A005.png\\\"

学号姓名班级
1王二小放牛班

这一条富裕的文本

\",\"createBy\":\"1\",\"hotspotCoverImgPath\":\"/statics/2025/11/14/3d_20251114111950A004.jpg\",\"hotspotSource\":\"新华网\",\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-11-14 11:22:07\",\"schId\":1,\"sendState\":0,\"title\":\"热点1\"}', NULL, 1, 'java.lang.NullPointerException\r\n at com.study.information.controller.BaseHotspotController.doSave(BaseHotspotController.java:95)\r\n at com.study.information.controller.BaseHotspotController.add(BaseHotspotController.java:77)\r\n at com.study.information.controller.BaseHotspotController$$FastClassBySpringCGLIB$$2f95be1c.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\r\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\r\n at sun.reflect.Nativ', '2025-11-14 11:22:07', 2); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (825, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"content\":\"

\\\"kejian_20251114112010A005.png\\\"

学号姓名班级
1王二小放牛班

这一条富裕的文本

\",\"createBy\":\"1\",\"hotspotCoverImgPath\":\"/statics/2025/11/14/3d_20251114111950A004.jpg\",\"hotspotSource\":\"新华网\",\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-11-14 11:23:13\",\"schId\":1,\"sendState\":0,\"title\":\"热点1\"}', NULL, 1, 'java.lang.NullPointerException\r\n at com.study.information.controller.BaseHotspotController.doSave(BaseHotspotController.java:95)\r\n at com.study.information.controller.BaseHotspotController.add(BaseHotspotController.java:77)\r\n at com.study.information.controller.BaseHotspotController$$FastClassBySpringCGLIB$$2f95be1c.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\r\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\r\n at sun.reflect.Nativ', '2025-11-14 11:23:23', 14247); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (826, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"content\":\"

\\\"kejian_20251114112010A005.png\\\"

学号姓名班级
1王二小放牛班

这一条富裕的文本

\",\"createBy\":\"1\",\"hotspotCoverImgPath\":\"/statics/2025/11/14/3d_20251114111950A004.jpg\",\"hotspotSource\":\"新华网\",\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-11-14 11:24:38\",\"schId\":1,\"sendState\":0,\"title\":\"热点1\"}', NULL, 1, 'java.lang.NullPointerException\r\n at com.study.information.controller.BaseHotspotController.doSave(BaseHotspotController.java:95)\r\n at com.study.information.controller.BaseHotspotController.add(BaseHotspotController.java:77)\r\n at com.study.information.controller.BaseHotspotController$$FastClassBySpringCGLIB$$2f95be1c.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\r\n at com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:60)\r\n at sun.reflect.Nativ', '2025-11-14 11:24:38', 71487); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (827, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"content\":\"

111

\",\"createBy\":\"1\",\"createTime\":\"2025-11-14 11:26:43\",\"hotspotCoverImgPath\":\"/statics/2025/11/14/3d_20251114112634A006.jpg\",\"hotspotSource\":\"111\",\"id\":5,\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-11-14 11:26:43\",\"schId\":1,\"sendState\":1,\"sendType\":1,\"title\":\"热点1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 11:26:43', 608); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (828, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"content\":\"

\\\"kejian_20251114113654A008.png\\\"



123
1

1213

\",\"createBy\":\"1\",\"createTime\":\"2025-11-14 11:37:33\",\"hotspotCoverImgPath\":\"/statics/2025/11/14/3d_20251114113639A007.jpg\",\"hotspotSource\":\"新华网\",\"id\":6,\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-11-14 11:37:33\",\"schId\":1,\"sendState\":1,\"sendType\":1,\"title\":\"热点2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 11:37:34', 81); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (829, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"content\":\"
学号姓名性别年龄
1王二小200
2刘胡兰150

\\\"3d_20251114113929A009.jpg\\\"

\",\"createBy\":\"1\",\"createTime\":\"2025-11-14 11:39:43\",\"hotspotCoverImgPath\":\"\",\"hotspotSource\":\"新华网\",\"id\":7,\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-11-14 11:39:43\",\"schId\":1,\"sendState\":1,\"sendType\":1,\"title\":\"热3\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 11:39:43', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (830, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_message_rel\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 14:18:33', 806); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (831, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"messageRel\",\"className\":\"BaseMessageRel\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1424,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 14:18:32\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":99,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"MessageId\",\"columnComment\":\"消息表ID\",\"columnId\":1425,\"columnName\":\"message_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 14:18:32\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"messageId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":99,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"UserType\",\"columnComment\":\"用户类型:1-教师;2-学生\",\"columnId\":1426,\"columnName\":\"user_type\",\"columnType\":\"smallint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 14:18:32\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"select\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"userType\",\"javaType\":\"Integer\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":99,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"UserId\",\"columnComment\":\"老师ID&学生ID\",\"columnId\":1427,\"columnName\":\"user_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 14:18:32\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"userId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"q', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 14:24:15', 686); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (832, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_message_rel\"}', NULL, 0, NULL, '2025-11-14 14:24:25', 410); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (833, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"messageRel\",\"className\":\"BaseMessageRel\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1424,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 14:18:32\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":99,\"updateBy\":\"\",\"updateTime\":\"2025-11-14 14:24:14\",\"usableColumn\":false},{\"capJavaField\":\"MessageId\",\"columnComment\":\"消息表ID\",\"columnId\":1425,\"columnName\":\"message_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 14:18:32\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"messageId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":99,\"updateBy\":\"\",\"updateTime\":\"2025-11-14 14:24:14\",\"usableColumn\":false},{\"capJavaField\":\"UserType\",\"columnComment\":\"用户类型:1-教师;2-学生\",\"columnId\":1426,\"columnName\":\"user_type\",\"columnType\":\"smallint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 14:18:32\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"select\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"userType\",\"javaType\":\"Integer\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":99,\"updateBy\":\"\",\"updateTime\":\"2025-11-14 14:24:14\",\"usableColumn\":false},{\"capJavaField\":\"UserId\",\"columnComment\":\"老师ID&学生ID\",\"columnId\":1427,\"columnName\":\"user_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 14:18:32\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 14:26:04', 644); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (834, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_message_rel\"}', NULL, 0, NULL, '2025-11-14 14:26:07', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (835, 2, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"aaaaaaaaaaaa\",\"avatar\":\"/statics/2025/11/14/file_20251114152142A010.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAC8ALwDAREAAhEBAxEB/8QAHwAAAQQDAQEBAQAAAAAAAAAABgAEBQcDCAkCCgEL/8QAOhAAAQUAAgECBAQEBQMEAwEABAECAwUGBxEhABITFDFBCBUiURYjYXEJFzKBkSShsULB0eEmUvBi/8QAHQEAAQQDAQEAAAAAAAAAAAAABQADBAYCBwgBCf/EAEMRAAICAgAFAgQDBAkCBQMFAAIDAQQFEQAGEhMhFDEVIkFRB2FxIzKBkQgWJEJSobHB8NHhQ2JykvElU4IXNGOTsv/aAAwDAQACEQMRAD8A/n/+lwuF6XC4XpcLhelwuF6XC437/CFumgKlTNOjVCKVGNe5O/gkSOmb0naL171lTtETx0xPoieuv/6O/NIpqjjWu0VG30iMlspQ9huCfM76AIiXERHTECMe2h40b+KuFlxTcEJKHK6i1HuwI6ZjUeP3YGS/nMeYmOuIVvEaFDIx7VRWIqdKn+r29+fPS9L466T6ePHhO/6lgbNZboKCiRiPH2iPET+f6+/HLFwSS0gIdanxHtH18/l9tfThrKQ5Xd+76qvSNX2p9k+317/Zfp/v6xOPaf4f6zxGFklOvMeN+88emEKnS+7pfv5/9l9MSG53vX5a/wC/ExU7/jE+P4xHDcgzx0q+VXpfPX0T9/8AT9/7p/t6jH+n8f5+OJoEURuJmJ8xuJncxv8A5/LiALOb0rfd0qKi/X6Ivfn9vr/Xrz57X1BOfE7nzOvf3/54/wBuCge8/p/04FT7FrXOTv8A9PhFTpU+v7/svf8AfpfKKvXobYZoJmPBeNRBanW/f7/lwSX5jx9/9o4A7W4RqOTtO/Kp0vfj2p1578r9PHafRfHlewjrHR4ier238/5619fO4jgmkNxuY8xMxqY8+0cVBobhv8z9SuX69oqf+rtOvC/08L46+v79121eEJmJPzERO5nqjW5+m/f9Z8e/BivXmfJbnzPiQmfp9dz/ALcU3bnumVye7+nS+F/t1339V/ovSdr49VW/kN7HrLx1REjuNxP', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 15:21:42', 922); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (836, 2, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"code\":\"2025-JSJ-0233\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 15:22:53\",\"deptAncestors\":[\"14\",\"15\",\"16\",\"18\"],\"deptCode\":\"-\",\"deptId\":18,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,计算机应用,2025界,C2502\\\",\\\"deptIds\\\":\\\"14,15,16,18\\\"}\",\"deptName\":\"-\",\"id\":9,\"joinTime\":\"2025-09-01\",\"params\":{},\"phoneNumber\":\"13677777777\",\"schId\":2,\"sex\":\"0\",\"status\":\"0\",\"userName\":\"陈大壮\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 15:22:53', 415); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (837, 2, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"1234567\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":14,\"deptName\":\"-\",\"nickName\":\"崔方玉\",\"params\":{},\"phoneNumber\":\"13466666666\",\"roleId\":102,\"roleIds\":[102],\"schId\":2,\"sex\":\"0\",\"status\":\"0\",\"userId\":118,\"userName\":\"13466666666\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 15:24:15', 452); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (838, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, 'admin', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"第5教室\",\"classType\":1,\"courseId\":16,\"courseName\":\"改革开放四十周年成就展222\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 15:59:20\",\"endDate\":\"2026-01-01\",\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2025-12-01\",\"state\":1,\"status\":2},\"orgIds\":[5,6],\"teacherIds\":[117,116],\"weekList\":[{\"endTime\":\"1970-01-01\",\"params\":{},\"startTime\":\"1970-01-01\",\"weekInfo\":1},{\"endTime\":\"1970-01-01\",\"params\":{},\"startTime\":\"1970-01-01\",\"weekInfo\":1}]}', '{\"msg\":\"创建上课安排失败: \\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\\n### The error may exist in file [/Volumes/data/code/school/StudyCloud/study-common/study-common-mapper/target/classes/mapper/teaching/BaseClassSchMapper.xml]\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.insertBaseClassSch-Inline\\n### The error occurred while setting parameters\\n### SQL: insert into base_class_sch ( sch_id, course_id, course_name, academic_id, address, start_date, end_date, class_type, status, is_del, state, create_by, create_time ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\\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\",\"code\":500}', 0, NULL, '2025-11-14 15:59:21', 3374); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (839, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, 'admin', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"第5教室\",\"classType\":1,\"courseId\":17,\"courseName\":\"改革开放四十周年成就展222\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 16:01:11\",\"endDate\":\"2026-01-01\",\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2025-12-01\",\"state\":1,\"status\":2},\"orgIds\":[5,6],\"teacherIds\":[117,116],\"weekList\":[{\"endTime\":\"1970-01-01\",\"params\":{},\"startTime\":\"1970-01-01\",\"weekInfo\":1},{\"endTime\":\"1970-01-01\",\"params\":{},\"startTime\":\"1970-01-01\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200}', 0, NULL, '2025-11-14 16:01:11', 3625); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (840, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T00999\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"nickName\":\"haha99\",\"params\":{},\"phoneNumber\":\"13388990099\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userId\":119,\"userName\":\"13388990099\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 16:21:43', 361); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (841, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

121212

1212

\",\"createBy\":\"101\",\"createTime\":\"2025-11-14 16:13:47\",\"id\":8,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-14 16:13:47\",\"schId\":2,\"sendScope\":2,\"sendState\":0,\"sendType\":1,\"title\":\"即时消息发送测试\"}', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 491,940 milliseconds ago. The last packet sent successfully to the server was 491,970 milliseconds ago.\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\information\\BaseMessageRelMapper.xml]\r\n### The error may involve com.study.information.mapper.BaseMessageRelMapper.insertBaseMessageRelBatch-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_message_rel ( message_id, user_type, user_id, read_state, create_by, create_time, update_by, update_time ) values ( ?, ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 491,940 milliseconds ago. The last packet sent successfully to the server was 491,970 milliseconds ago.\n; Communications link failure\n\nThe last packet successfully received from the server was 491,940 milliseconds ago. The last packet sent successfully to the server was 491,970 milliseconds ago.; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure\n\nThe last packet successfully received from the server was 491,940 milliseconds ago. The last packet sent successfully to the server was 491,970 milliseconds ago.', '2025-11-14 16:23:13', 565785); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (842, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, 'admin', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"第五教室\",\"classType\":1,\"courseId\":18,\"courseName\":\"改革开放四十周年成就展444\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 16:23:57\",\"endDate\":\"2026-01-01\",\"id\":2,\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2025-12-01\",\"state\":1,\"status\":2},\"orgIds\":[5,6],\"teacherIds\":[119,117],\"weekList\":[{\"classSchId\":2,\"endTime\":\"1970-01-01\",\"params\":{},\"startTime\":\"1970-01-01\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":2}', 0, NULL, '2025-11-14 16:23:58', 4171); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (843, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

121212

1212

\",\"createBy\":\"101\",\"createTime\":\"2025-11-14 16:30:04\",\"id\":9,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-14 16:30:04\",\"schId\":2,\"sendScope\":2,\"sendState\":0,\"sendType\":1,\"title\":\"即时消息发送测试\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 16:31:02', 57798); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (844, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

123

\",\"createBy\":\"101\",\"createTime\":\"2025-11-14 16:33:02\",\"id\":1,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-14 16:33:02\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"n1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 16:33:39', 36352); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (845, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, 'admin', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"教室05\",\"classType\":1,\"courseId\":19,\"courseName\":\"改革开放四十周年成就展123123\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 16:35:21\",\"endDate\":\"2026-01-01\",\"id\":3,\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2025-12-01\",\"state\":1,\"status\":2},\"orgIds\":[5,6],\"teacherIds\":[119,117],\"weekList\":[{\"classSchId\":3,\"endTime\":\"1970-01-01\",\"params\":{},\"startTime\":\"1970-01-01\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":3}', 0, NULL, '2025-11-14 16:35:22', 3104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (846, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

12

\",\"createBy\":\"1\",\"createTime\":\"2025-11-14 16:35:52\",\"id\":2,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-14 16:35:52\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"sys1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 16:36:08', 16552); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (847, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"actualSendTime\":\"2025-11-14 16:40:34\",\"content\":\"

11

\",\"createBy\":\"1\",\"createTime\":\"2025-11-14 16:40:34\",\"hotspotCoverImgPath\":\"\",\"hotspotSource\":\"新华网\",\"id\":3,\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-11-14 16:40:34\",\"schId\":1,\"sendState\":1,\"sendType\":1,\"title\":\"hot1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 16:40:34', 150); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (848, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, 'admin', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"第五教室\",\"classType\":1,\"courseId\":20,\"courseName\":\"改革开放四十周年成就展123\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 16:46:03\",\"endDate\":\"2026-01-01\",\"id\":4,\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2025-12-01\",\"state\":1,\"status\":2},\"orgIds\":[5,6],\"teacherIds\":[119,117],\"weekList\":[{\"classSchId\":4,\"endTime\":\"11:00\",\"params\":{},\"startTime\":\"09:30\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":4}', 0, NULL, '2025-11-14 16:46:04', 3478); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (849, 1, '定时任务', 1, 'com.study.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"concurrent\":\"1\",\"cronExpression\":\"0 */1 * * * ?\",\"invokeTarget\":\"InformationTask.sendMessage\",\"jobGroup\":\"DEFAULT\",\"jobName\":\"信息系统-定时发送系统消息、通知公告、热点\",\"misfirePolicy\":\"1\",\"nextValidTime\":\"2025-11-14 17:22:00\",\"params\":{},\"status\":\"0\"}', NULL, 1, 'No bean named \'InformationTask\' available', '2025-11-14 17:21:30', 67); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (850, 1, '定时任务', 1, 'com.study.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"concurrent\":\"1\",\"createBy\":\"admin\",\"cronExpression\":\"0 */1 * * * ?\",\"invokeTarget\":\"informationTask.sendMessage\",\"jobGroup\":\"DEFAULT\",\"jobId\":100,\"jobName\":\"信息系统-定时发送系统消息、通知公告、热点\",\"misfirePolicy\":\"1\",\"nextValidTime\":\"2025-11-14 17:22:00\",\"params\":{},\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 17:21:40', 254); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (851, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"jobId\":100,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 17:24:27', 251); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (852, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"jobId\":100,\"misfirePolicy\":\"0\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 17:32:34', 220); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (853, 1, '定时任务调度日志', 3, 'com.study.job.controller.SysJobLogController.remove()', 'DELETE', 1, 'admin', NULL, '/job/log/8,9,10,11,12,13,5,6,7,4', '127.0.0.1', '', '[8,9,10,11,12,13,5,6,7,4]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 17:34:19', 203); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (854, 1, '定时任务调度日志', 3, 'com.study.job.controller.SysJobLogController.remove()', 'DELETE', 1, 'admin', NULL, '/job/log/14,3,2,1', '127.0.0.1', '', '[14,3,2,1]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 17:34:26', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (855, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, 'admin', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"第五教室\",\"classType\":2,\"courseId\":21,\"courseName\":\"习近平总书记讲党史故事2222\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 17:50:28\",\"endDate\":\"2025-12-31\",\"id\":5,\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2025-11-17\",\"state\":1,\"status\":2},\"orgIds\":[5,6,8,9],\"teacherIds\":[119,117,116,115,114,113,110],\"weekList\":[{\"classSchId\":5,\"endTime\":\"10:00\",\"params\":{},\"startTime\":\"09:00\",\"weekInfo\":2},{\"classSchId\":5,\"endTime\":\"11:30\",\"params\":{},\"startTime\":\"09:00\",\"weekInfo\":4}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":5}', 0, NULL, '2025-11-14 17:50:29', 827); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (856, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, 'admin', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":13,\"address\":\"第五教室\",\"classType\":3,\"courseId\":22,\"courseName\":\"中国精神002\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 17:54:37\",\"endDate\":\"2025-12-31\",\"id\":6,\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2025-11-18\",\"state\":1,\"status\":2},\"orgIds\":[5,8],\"teacherIds\":[110],\"weekList\":[{\"classSchId\":6,\"endTime\":\"14:30\",\"params\":{},\"startTime\":\"13:29\",\"weekInfo\":4}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":6}', 0, NULL, '2025-11-14 17:54:37', 631); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (857, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"jobId\":100,\"misfirePolicy\":\"0\",\"params\":{},\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-14 17:57:06', 206); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (858, 1, '定时任务', 1, 'com.study.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '', '{\"msg\":\"新增任务\'上课信息状态定时刷新\'失败,Cron表达式不正确\",\"code\":500}', 0, NULL, '2025-11-15 10:15:46', 22); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (859, 1, '定时任务', 1, 'com.study.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"concurrent\":\"1\",\"createBy\":\"admin\",\"cronExpression\":\"0/10 * * * * ?\",\"invokeTarget\":\"BaseClassSchTask.refreshClassScheduleStatus\",\"jobGroup\":\"SYSTEM\",\"jobId\":101,\"jobName\":\"上课信息状态定时刷新\",\"misfirePolicy\":\"1\",\"nextValidTime\":\"2025-11-15 10:16:20\",\"params\":{},\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 10:16:16', 180); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (860, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"concurrent\":\"1\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 10:16:16\",\"cronExpression\":\"0 1 0 * * ?\",\"invokeTarget\":\"BaseClassSchTask.refreshClassScheduleStatus\",\"jobGroup\":\"SYSTEM\",\"jobId\":101,\"jobName\":\"上课信息状态定时刷新\",\"misfirePolicy\":\"1\",\"nextValidTime\":\"2025-11-16 00:01:00\",\"params\":{},\"remark\":\"\",\"status\":\"1\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 10:45:34', 207); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (861, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":101,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 10:45:39', 134); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (862, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":101,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 10:46:25', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (863, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":101,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 10:50:08', 163); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (864, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":22,\"createBy\":\"1\",\"createTime\":\"2025-11-15 11:00:44\",\"id\":87,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"001\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":22,\"createBy\":\"1\",\"createTime\":\"2025-11-15 11:00:44\",\"id\":87,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"001\"}}', 0, NULL, '2025-11-15 11:00:47', 143); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (865, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 11:15:54\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/15/3d_20251115111536A001.jpg\",\"mail\":\"123@aa.com\",\"manager\":\"崔方玉\",\"mgrGender\":\"0\",\"mgrPhone\":\"13266666666\",\"params\":{},\"schoolId\":14,\"schoolName\":\"test1\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-15 11:15:54\",\"userId\":120}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 11:15:56', 691); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (866, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 11:15:54\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/15/logo3_20251115112830A003.png\",\"mail\":\"123@aa.com\",\"manager\":\"崔方玉\",\"mgrGender\":\"0\",\"mgrPhone\":\"13266666666\",\"params\":{},\"schoolId\":14,\"schoolName\":\"test1\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-15 11:28:31\",\"userId\":120}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 11:28:33', 276); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (867, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 11:15:54\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/15/logo3_20251115112830A003.png\",\"mail\":\"123@aa.com\",\"manager\":\"崔方玉2\",\"mgrGender\":\"0\",\"mgrPhone\":\"13266666666\",\"params\":{},\"schoolId\":14,\"schoolName\":\"test11\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-15 11:34:58\",\"userId\":120}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 11:34:59', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (868, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/14', '127.0.0.1', '', '14', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 11:35:04', 563); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (869, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 11:35:49\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/15/logo1_20251115113548A004.png\",\"mail\":\"qq@aa.com\",\"manager\":\"方世玉\",\"mgrGender\":\"0\",\"mgrPhone\":\"13266666666\",\"params\":{},\"schoolId\":15,\"schoolName\":\"tttt\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-15 11:35:49\",\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 11:35:50', 603); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (870, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 11:35:49\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/15/logo1_20251115113548A004.png\",\"mail\":\"qq@aa1.com\",\"manager\":\"方世玉\",\"mgrGender\":\"0\",\"mgrPhone\":\"13266666666\",\"params\":{},\"schoolId\":15,\"schoolName\":\"tttt2\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-15 11:39:56\",\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 11:39:58', 501); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (871, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 11:35:49\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/15/logo1_20251115113548A004.png\",\"mail\":\"qq@aa1.com\",\"manager\":\"方世玉\",\"mgrGender\":\"0\",\"mgrPhone\":\"13266666666\",\"params\":{},\"schoolId\":15,\"schoolName\":\"tttt2\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-15 11:40:10\",\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 11:40:12', 258); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (872, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '0:0:0:0:0:0:0:1%0', '', '{\"apps\":\"1,2,3,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 11:35:49\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/15/logo2_20251115115952A001.png\",\"mail\":\"qq@aa1.com\",\"manager\":\"方世玉\",\"mgrGender\":\"0\",\"mgrPhone\":\"13266666666\",\"params\":{},\"schoolId\":15,\"schoolName\":\"tttt2\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-15 11:59:54\",\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 11:59:54', 367); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (873, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/15', '0:0:0:0:0:0:0:1%0', '', '15', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 12:00:00', 506); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (874, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 12:00:26\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/15/logo4_20251115120009A002.png\",\"mail\":\"qq@aa.com\",\"manager\":\"方世玉\",\"mgrGender\":\"0\",\"mgrPhone\":\"13266666666\",\"params\":{},\"schoolId\":16,\"schoolName\":\"tttt\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-15 12:00:26\",\"userId\":122}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 12:00:27', 656); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (875, 1, '学校信息', 3, 'com.study.setting.controller.BaseSchoolController.remove()', 'DELETE', 1, 'admin', NULL, '/school/16', '127.0.0.1', '', '16', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 12:00:32', 492); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (876, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"jobId\":100,\"misfirePolicy\":\"0\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 12:33:07', 321); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (877, 1, '代码生成', 3, 'com.study.gen.controller.GenController.remove()', 'DELETE', 1, 'admin', NULL, '/gen/92', '127.0.0.1', '', '[92]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 14:59:00', 307); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (878, 1, '代码生成', 3, 'com.study.gen.controller.GenController.remove()', 'DELETE', 1, 'admin', NULL, '/gen/93', '127.0.0.1', '', '[93]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 14:59:03', 258); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (879, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_exam_student,base_exam_student_result,base_exam_plan,base_exam_plan_class\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 14:59:23', 3423); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (880, 1, '代码生成', 2, 'com.study.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/base_exam_student', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 14:59:54', 1357); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (881, 1, '代码生成', 2, 'com.study.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/base_exam_plan_class', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 15:02:04', 330); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (882, 1, '代码生成', 3, 'com.study.gen.controller.GenController.remove()', 'DELETE', 1, 'admin', NULL, '/gen/101', '127.0.0.1', '', '[101]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 15:03:35', 257); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (883, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_exam_plan_class\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 15:03:39', 398); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (884, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examPlan\",\"className\":\"BaseExamPlan\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"ID\",\"columnId\":1433,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:20\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":100,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1434,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":100,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ExamTitle\",\"columnComment\":\"考试名称\",\"columnId\":1435,\"columnName\":\"exam_title\",\"columnType\":\"varchar(64)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"examTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":100,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ExamInfoId\",\"columnComment\":\"考试试卷\",\"columnId\":1436,\"columnName\":\"exam_info_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"examInfoId\",\"javaType\":\"Long\",\"list\":true,', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 15:05:04', 1078); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (885, 1, '代码生成', 2, 'com.study.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/base_exam_student', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 15:06:52', 1364); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (886, 1, '代码生成', 3, 'com.study.gen.controller.GenController.remove()', 'DELETE', 1, 'admin', NULL, '/gen/102', '127.0.0.1', '', '[102]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 15:06:58', 258); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (887, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_exam_student\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 15:07:03', 1435); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (888, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examStudent\",\"className\":\"BaseExamStudent\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"ID\",\"columnId\":1479,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 15:07:02\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":105,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1480,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 15:07:02\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":105,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"PlanId\",\"columnComment\":\"安排ID\",\"columnId\":1481,\"columnName\":\"plan_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 15:07:02\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"planId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":105,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"StudentId\",\"columnComment\":\"学生ID\",\"columnId\":1482,\"columnName\":\"student_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 15:07:02\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"studentId\",\"javaType\":', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 15:08:32', 1370); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (889, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examPlan\",\"className\":\"BaseExamPlan\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"ID\",\"columnId\":1433,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:20\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":100,\"updateBy\":\"\",\"updateTime\":\"2025-11-15 15:05:03\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1434,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":100,\"updateBy\":\"\",\"updateTime\":\"2025-11-15 15:05:03\",\"usableColumn\":false},{\"capJavaField\":\"ExamTitle\",\"columnComment\":\"考试名称\",\"columnId\":1435,\"columnName\":\"exam_title\",\"columnType\":\"varchar(64)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"examTitle\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":100,\"updateBy\":\"\",\"updateTime\":\"2025-11-15 15:05:03\",\"usableColumn\":false},{\"capJavaField\":\"ExamInfoId\",\"columnComment\":\"考试试卷\",\"columnId\":1436,\"columnName\":\"exam_info_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"is', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 15:08:47', 1776); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (890, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_exam_plan\"}', NULL, 0, NULL, '2025-11-15 15:10:20', 452); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (891, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_exam_student\"}', NULL, 0, NULL, '2025-11-15 15:10:24', 166); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (892, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"examStudentResult\",\"className\":\"BaseExamStudentResult\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"ID\",\"columnId\":1466,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:22\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":103,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ExamStudentId\",\"columnComment\":\"学生考试ID\",\"columnId\":1467,\"columnName\":\"exam_student_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:22\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"examStudentId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":103,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionId\",\"columnComment\":\"问题主键\",\"columnId\":1468,\"columnName\":\"question_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:22\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"questionId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":103,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionTitle\",\"columnComment\":\"问题描述\",\"columnId\":1469,\"columnName\":\"question_title\",\"columnType\":\"varchar(128)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-15 14:59:22\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"questionTitle\",', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 15:44:16', 930); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (893, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_exam_student_result\"}', NULL, 0, NULL, '2025-11-15 15:44:20', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (894, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":8,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2012,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"roleSort\":0,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 20:51:16', 293); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (895, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":1,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":0,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 20:51:30', 266); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (896, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003],\"params\":{},\"roleId\":110,\"roleKey\":\"vvv\",\"roleName\":\"vvv\",\"roleSort\":0,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 20:51:37', 258); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (897, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":8,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"roleSort\":0,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 20:51:42', 265); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (898, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"20131\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"userId\":110},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"userId\":110}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"67663339@.com\",\"joinTime\":\"2025-11-09\",\"loginDate\":\"2025-11-15 20:52:07\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"姜大1\",\"params\":{},\"phoneNumber\":\"18111111111\",\"remark\":\"111\",\"roleId\":2,\"roleIds\":[2],\"roles\":[],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":110,\"userName\":\"18111111111\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 20:53:46', 687); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (899, 1, '上课信息', 3, 'com.study.teaching.controller.BaseClassSchController.remove()', 'DELETE', 1, 'admin', NULL, '/classSchedule/6', '127.0.0.1', '', '[6]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-15 21:10:09', 637); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (900, 1, '上课信息', 2, 'com.study.teaching.controller.BaseClassSchController.updateComplete()', 'PUT', 1, 'admin', NULL, '/classSchedule/updateComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"第五教室222\",\"classType\":3,\"courseId\":3,\"courseName\":\"改革开放四十周年成就展123aa\",\"endDate\":\"2026-02-02\",\"id\":4,\"params\":{},\"schId\":1,\"startDate\":\"2025-12-01\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-15 21:55:59\"},\"orgIds\":[5],\"teacherIds\":[117],\"weekList\":[{\"classSchId\":4,\"endTime\":\"11:00:00\",\"params\":{},\"startTime\":\"09:30:00\",\"weekInfo\":1},{\"classSchId\":4,\"endTime\":\"12:30\",\"params\":{},\"startTime\":\"11:00\",\"weekInfo\":2}]}', '{\"msg\":\"上课安排更新成功\",\"code\":200}', 0, NULL, '2025-11-15 21:56:00', 623); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (901, 1, '上课信息', 2, 'com.study.teaching.controller.BaseClassSchController.updateComplete()', 'PUT', 1, 'admin', NULL, '/classSchedule/updateComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"第五教室222\",\"classType\":3,\"courseId\":20,\"courseName\":\"改革开放四十周年成就展123aa\",\"endDate\":\"2026-02-02\",\"id\":4,\"params\":{},\"schId\":1,\"startDate\":\"2025-12-01\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-15 22:03:47\"},\"orgIds\":[5],\"teacherIds\":[117],\"weekList\":[{\"classSchId\":4,\"endTime\":\"11:00:00\",\"params\":{},\"startTime\":\"09:30:00\",\"weekInfo\":1},{\"classSchId\":4,\"endTime\":\"12:30:00\",\"params\":{},\"startTime\":\"11:00:00\",\"weekInfo\":2}]}', '{\"msg\":\"上课安排更新成功\",\"code\":200}', 0, NULL, '2025-11-15 22:03:48', 781); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (902, 1, '上课信息', 2, 'com.study.teaching.controller.BaseClassSchController.updateComplete()', 'PUT', 1, 'admin', NULL, '/classSchedule/updateComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"第五教室222\",\"classType\":2,\"courseId\":20,\"courseName\":\"改革开放四十周年成就展123aa\",\"endDate\":\"2026-02-02\",\"id\":4,\"params\":{},\"schId\":1,\"startDate\":\"2025-12-01\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-15 22:03:56\"},\"orgIds\":[5],\"teacherIds\":[117],\"weekList\":[{\"classSchId\":4,\"endTime\":\"11:00:00\",\"params\":{},\"startTime\":\"09:30:00\",\"weekInfo\":1},{\"classSchId\":4,\"endTime\":\"12:30:00\",\"params\":{},\"startTime\":\"11:00:00\",\"weekInfo\":2}]}', '{\"msg\":\"上课安排更新成功\",\"code\":200}', 0, NULL, '2025-11-15 22:03:57', 692); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (903, 1, '字典类型', 3, 'com.study.system.controller.SysDictTypeController.remove()', 'DELETE', 1, 'admin', NULL, '/dict/type/101', '127.0.0.1', '', '[101]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-16 15:56:41', 233); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (904, 1, '字典类型', 1, 'com.study.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"考试状态\",\"dictType\":\"exam_plan_status\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-16 16:00:14', 268); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (905, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"未开始\",\"dictSort\":0,\"dictType\":\"exam_plan_status\",\"dictValue\":\"0\",\"listClass\":\"danger\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-16 16:00:34', 213); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (906, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"进行中\",\"dictSort\":10,\"dictType\":\"exam_plan_status\",\"dictValue\":\"10\",\"listClass\":\"primary\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-16 16:00:52', 196); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (907, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"已结束\",\"dictSort\":100,\"dictType\":\"exam_plan_status\",\"dictValue\":\"100\",\"listClass\":\"success\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-16 16:01:12', 226); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (908, 1, '登录日志', 5, 'com.study.system.controller.SysLogininforController.export()', 'POST', 1, 'admin', NULL, '/logininfor/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-17 10:49:30', 4640); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (909, 1, '登录日志', 5, 'com.study.system.controller.SysLogininforController.export()', 'POST', 1, 'admin', NULL, '/logininfor/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-17 10:51:12', 419); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (910, 1, '操作日志', 5, 'com.study.system.controller.SysOperlogController.export()', 'POST', 1, 'admin', NULL, '/operlog/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"businessType\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-11-17 10:54:20', 1641); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (911, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"concurrent\":\"1\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 17:21:39\",\"cronExpression\":\"0 */5 * * * ?\",\"invokeTarget\":\"informationTask.sendMessage\",\"jobGroup\":\"DEFAULT\",\"jobId\":100,\"jobName\":\"信息系统-定时发送系统消息、通知公告、热点\",\"misfirePolicy\":\"1\",\"nextValidTime\":\"2025-11-17 11:00:00\",\"params\":{},\"remark\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-17 10:58:58', 489); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (912, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.updatePassword()', 'POST', 1, '王武', NULL, '/student/updatePassword', '127.0.0.1', '', '{\"id\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-17 15:28:59', 244); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (913, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

本系统将于今晚23:00-次日02:00进行维护升级,期间可能无法正常访问,请提前做好准备。

\",\"createBy\":\"1\",\"createTime\":\"2025-11-17 15:36:01\",\"id\":4,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-17 15:36:01\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"系统维护通知\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-17 15:36:07', 1778); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (914, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

根据学校安排,春季学期思政学习将于3月20日开始,请各位同学按时完成学习任务,并参加线上测试。

\",\"createBy\":\"1\",\"createTime\":\"2025-11-17 15:37:03\",\"id\":5,\"msgCategory\":2,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-17 15:37:03\",\"schId\":1,\"sendState\":0,\"sendType\":2,\"title\":\"关于开展春季学期思政学习的通知\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-17 15:37:06', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (915, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

根据国家法定节假日安排,结合学校实际,2025年清明节放假时间为4月4日至6日,共3天。4月7日(星期一)正常上课。

\",\"createBy\":\"118\",\"createTime\":\"2025-11-17 16:51:48\",\"id\":6,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-17 16:51:48\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"2025年清明节放假安排通知\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-17 16:51:52', 934); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (916, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

根据国家法定节假日安排,结合学校实际,2025年清明节放假时间为4月4日至6日,共3天。4月7日(星期一)正常上课。

\",\"createBy\":\"118\",\"createTime\":\"2025-11-17 16:52:26\",\"id\":7,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-17 16:52:26\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":2,\"title\":\"2025年清明节放假安排通知22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-17 16:52:29', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (917, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '13388880001', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

2025年清明节放假安排通知22

2025年清明节放假安排通知22

\",\"createBy\":\"100\",\"createTime\":\"2025-11-17 17:06:32\",\"id\":8,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-17 17:06:32\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"2025年清明节放假安排通知33\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-17 17:06:35', 552); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (918, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

2025年清明节放假安排通知44

\",\"createBy\":\"100\",\"createTime\":\"2025-11-17 17:56:00\",\"id\":9,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-17 17:56:00\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\" 2025年清明节放假安排通知44\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-17 17:56:03', 1233); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (919, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

2025年清明节放假安排通知-定时发送

2025年清明节放假安排通知-定时发送

2025年清明节放假安排通知-定时发送2025年清明节放假安排通知-定时发送

2025年清明节放假安排通知-定时发送2025年清明节放假安排通知-定时发送2025年清明节放假安排通知-定时发送2025年清明节放假安排通知-定时发送

\",\"createBy\":\"100\",\"createTime\":\"2025-11-17 18:27:20\",\"id\":10,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-17 18:27:20\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":2,\"title\":\"2025年清明节放假安排通知-定时发送\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-17 18:27:21', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (920, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送2025年清明节放假安排通知-立即发送

\",\"createBy\":\"100\",\"createTime\":\"2025-11-17 18:27:45\",\"id\":11,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-17 18:27:45\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"2025年清明节放假安排通知-立即发送\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-17 18:27:48', 877); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (921, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

以荒诞幽默解构武侠世界,用客栈方寸之地演绎江湖百态。这部披着古装外衣的情景喜剧,实则是对传统武侠文化的温柔颠覆。《武林外传》解构了传统武侠的宏大叙事,在插科打诨间道尽生活真谛——江湖不在远方,而在每个有哭有笑、相互温暖的日子里。这种后现代的解构与温情,让它成为永不褪色的经典。

\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 09:42:48\",\"id\":12,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-18 09:42:48\",\"schId\":2,\"sendScope\":2,\"sendState\":0,\"sendType\":1,\"title\":\"武林外传\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 09:42:51', 1063); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (922, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

好看是确实好看,感觉很喜欢婉瑜宛瑜,展博和美嘉。它确实赶上了好的时代,让我在事情在网络发酵前便与爱情公寓产生了羁绊。 现在如果再面对同样的话语,我或许会第一次也是最后一次说出那句:无所谓,我会溺爱。 永远不支持抄袭融梗,但我允许自己有一点私心。

\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 09:43:35\",\"id\":13,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-18 09:43:35\",\"schId\":2,\"sendScope\":3,\"sendState\":0,\"sendType\":1,\"title\":\"爱情公寓\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 09:43:36', 360); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (923, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

演员的微表情处理得很到位,把角色的情绪传递得很准。永远会记得温婉女孩小雪,顽皮学渣刘星,邻家弟弟小雨,风趣老爸夏东海,严厉辣妈刘梅。承载着一代人的回忆啊!现在再次重温依旧好看,但是刘梅已经淡出圈子,高亚麟转向幕后,小雪还在不断努力,刘星亦是如此,不知道他们再看这部剧时会有什么感想呢。

\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 09:44:33\",\"id\":14,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-18 09:44:33\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"家有儿女\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 09:44:34', 547); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (924, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

这样的片子也不允许拍了,所以我们不但没有进步,反而一直在倒退。这片子其实很适合中学生看,万一没文化出去混社会至少学门手艺,最重要的人得机灵点。每个演员都演得很好!拍摄环境太艰苦了,真的很不容易。管虎最好的作品,这不是电视剧,是底层民工的纪录片。

\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 09:45:43\",\"id\":15,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-18 09:45:43\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":2,\"title\":\"生存之农民工\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 09:45:44', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (925, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

这样的片子也不允许拍了,所以我们不但没有进步,反而一直在倒退。这片子其实很适合中学生看,万一没文化出去混社会至少学门手艺,最重要的人得机灵点。每个演员都演得很好!拍摄环境太艰苦了,真的很不容易。管虎最好的作品,这不是电视剧,是底层民工的纪录片。

\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 10:23:26\",\"id\":16,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-18 10:23:26\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":2,\"title\":\"生存之农民工\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:23:27', 130097); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (926, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

AAA是网络访问控制的一种安全管理框架,它决定哪些的用户能够访问网络,以及用户能够访问哪些资源或者得到哪些服务。本文从AAA的三要素、工作原理、使用的协议和应用这几个方面展开介绍。

\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 10:26:01\",\"id\":17,\"msgState\":1,\"msgType\":2,\"params\":{},\"planSendTime\":\"2025-11-18 10:36:00\",\"publishTime\":\"2025-11-18 10:26:01\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":2,\"title\":\"什么是AAA?\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:26:02', 11294); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (927, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

第一个A:认证

认证用来识别访问网络的用户的身份,判断访问者是否为合法的用户。

\\\"认证\\\"
认证

AAA服务器将用户的身份验证凭据与存储在数据库中的用户凭据进行比较。如果凭据匹配,则身份认证成功,并且授予用户访问网络的权限。如果凭据不匹配,则身份认证失败,并且网络访问将被拒绝。用户的身份认证凭据通常使用:

  • 密码
  • 用户名和密码
  • 数字证书
\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 10:27:11\",\"id\":18,\"msgState\":0,\"msgType\":2,\"params\":{},\"schId\":2,\"sendScope\":2,\"sendState\":0,\"sendType\":1,\"title\":\"AAA的三个要素\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:27:12', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (928, 2, '系统消息', 2, 'com.study.information.controller.BaseNoticeController.edit()', 'PUT', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

第一个A:认证

认证用来识别访问网络的用户的身份,判断访问者是否为合法的用户。

\\\"认证\\\"
认证

AAA服务器将用户的身份验证凭据与存储在数据库中的用户凭据进行比较。如果凭据匹配,则身份认证成功,并且授予用户访问网络的权限。如果凭据不匹配,则身份认证失败,并且网络访问将被拒绝。用户的身份认证凭据通常使用:

  • 密码
  • 用户名和密码
  • 数字证书
\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 10:27:11\",\"creatorName\":\"石大鹏\",\"id\":18,\"isDel\":0,\"msgState\":1,\"msgType\":2,\"params\":{},\"planSendTime\":\"2025-11-18 10:38:00\",\"publishTime\":\"2025-11-18 10:27:27\",\"schId\":2,\"sendScope\":2,\"sendState\":0,\"sendType\":2,\"title\":\"AAA的三个要素\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-18 10:27:27\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:27:28', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (929, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

计费用来记录用户使用网络服务过程中的相关操作,简单说就是:什么人、什么时间、做了什么事。

\\\"计费\\\"
计费

记录的内容包括使用的服务类型、起始时间、数据流量等,用于收集和记录用户对网络资源的使用情况,并可以实现针对时间、流量的计费需求,也对网络起到监控作用。

AAA是如何工作的?

\",\"createBy\":\"1\",\"createTime\":\"2025-11-18 10:29:25\",\"id\":19,\"msgCategory\":2,\"msgState\":0,\"msgType\":1,\"params\":{},\"planSendTime\":\"2025-11-18 10:40:00\",\"schId\":1,\"sendState\":0,\"sendType\":2,\"title\":\"第三个A:计费\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:29:26', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (930, 1, '系统消息', 2, 'com.study.information.controller.BaseSysMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

计费用来记录用户使用网络服务过程中的相关操作,简单说就是:什么人、什么时间、做了什么事。

\\\"计费\\\"
计费

记录的内容包括使用的服务类型、起始时间、数据流量等,用于收集和记录用户对网络资源的使用情况,并可以实现针对时间、流量的计费需求,也对网络起到监控作用。

AAA是如何工作的?

\",\"createBy\":\"1\",\"createTime\":\"2025-11-18 10:29:25\",\"creatorName\":\"若依\",\"id\":19,\"isDel\":0,\"msgCategory\":2,\"msgState\":1,\"msgType\":1,\"params\":{},\"planSendTime\":\"2025-11-18 10:40:00\",\"publishTime\":\"2025-11-18 10:29:32\",\"schId\":1,\"sendState\":0,\"sendType\":2,\"title\":\"第三个A:计费\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-18 10:29:32\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:29:33', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (931, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

AAA采用客户端/服务器结构,这种结构简单、扩展性好,且便于集中管理用户信息。

\\\"AAA基本框架\\\"
AAA基本框架

如上图所示,AAA的基本实现流程如下:

  1. 用户访问网络前,首先与AAA客户端建立连接。
  2. AAA客户端负责把用户验证凭据传递给AAA服务器。
  3. AAA服务器根据用户认证凭据进行认证和授权,并将认证和授权结果返回给AAA客户端。
  4. AAA客户端根据服务器的返回结果判断是否允许用户接入。其中:
  • AAA客户端运行在NAS设备(网络接入服务器)上,NAS设备可以是路由器交换机等为用户提供入网服务的设备。
  • AAA服务器是认证服务器、授权服务器和计费服务器的统称,负责集中管理用户信息。根据AAA使用的通信协议的不同,AAA服务器可以分为RADIUS服务器、TACACS服务器等。
\",\"createBy\":\"1\",\"createTime\":\"2025-11-18 10:37:47\",\"id\":20,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-18 10:37:47\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"AAA是如何工作的?\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:37:50', 1361); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (932, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

AAA可以通过多种协议实现认证、授权和计费。


RADIUS

远程身份验证拨号用户服务RADIUS(Remote Authentication Dial-In User Service)是标准协议,基本所有主流设备厂商都支持,所以在实际网络中应用最多。

RADIUS协议可分为认证协议和计费协议,分别通过IETF RFC 2865和RFC 2866定义。由于定义RADIUS协议的时间早于AAA框架模型,所以RADIUS协议并没有将认证和授权分开,而是将认证和授权在同一个流程中进行处理。因此,使用RADIUS协议实现AAA时,用户可能无法知道被拒绝访问的原因是由于密码错误还是因为没有权限。


TACACS、TACACS+和HWTACACS

终端访问控制器控制系统TACACS(Terminal Access Controller Access-Control System),是一种起源于二十世纪八十年代的AAA协议。在之后的发展中,各厂商在TACACS协议的基础上进行了扩展,例如思科公司开发的TACACS+和华为公司开发的HWTACACS。TACACS+和HWTACACS均为私有协议,在发展过程中逐步替代了原来的TACACS协议,并且不再兼容TACACS协议。

HWTACACS协议可以兼容TACACS+协议,HWTACACS协议与TACACS+协议定义的报文结构和报文类型一致,主要区别在于授权和计费报文中携带的属性含义或类型不完全相同。

与RADIUS协议相比,HWTACACS或TACACS+更加适用于登录用户(例如STelnet用户)的身份认证场景。这是由于它在数据传输、加密上安全性更高,同时能够提供命令行鉴权、事件记录等优势功能。


LDAP和AD

轻量级目录存取协议LDAP(Lightweight Directory Access Protocol)是一种基于TCP/IP的目录访问协议。LDAP可以理解为一个数据库,该数据库中可以存储有层次的、有结构、有关联的各种类型的数据,比如:电子邮件地址、人力资源数据、联系人列表等等。LDAP通过绑定和查询操作可以实现认证和授权功能,常用于单点登录场景,例如企业用户只需要在电脑上登录一次,就可以访问多个相互信任的应用系统。

AD(Active Directory)是LDAP的一个应用实例,是Windows操作系统上提供目录服务的组件,用来保存操作系统的用户信息。与LDAP相比,AD将Kerberos协议集成到LDAP认证过程中,利用Kerberos协议的对称密钥体制来提高密码传输的安全性,防止在LDAP认证过程中泄露用户的密码。


HACA

华为敏捷云认证HACA(Huawei Agile Cloud Authentication)是一种基于移动互联网的HTTP 2.0协议,支持Portal认证或MAC优先的Portal认证,主要解', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:38:20', 1308); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (933, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

根据用户接入的方式不同,AAA在网络中可以划分为以下几种应用:

  • 登录用户管理
  • NAC用户接入控制
\",\"createBy\":\"1\",\"createTime\":\"2025-11-18 10:38:57\",\"id\":22,\"msgCategory\":2,\"msgState\":1,\"msgType\":1,\"params\":{},\"planSendTime\":\"2025-11-18 10:49:00\",\"publishTime\":\"2025-11-18 10:38:57\",\"schId\":1,\"sendState\":0,\"sendType\":2,\"title\":\"AAA有哪些应用?\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:38:58', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (934, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"


定义

路由管理指路由设备具有建立,刷新路由表,并根据路由表转发数据包的能力。


目的

路由管理帮助用户认识到设备为了实现数据的转发,路由设备、路由表和路由协议是必不可少的。还可以帮助用户对路由设备,路由表有初步认识,知悉路由协议是用于发现路由,生成路由表,路由表中保存了各种路由协议发现的路由,路由设备用来选择路由,实现数据转发。

\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 10:40:14\",\"id\":23,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-18 10:40:14\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"路由管理简介\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:40:15', 574); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (935, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

路由设备用来进行路由选择和报文转发。路由设备根据收到报文的目的地址选择一条合适的路径,将报文传送到下一个路由设备,路径终端的路由设备负责将报文送交目的主机。路由设备可以为数据传输选择最佳路径。

例如,在图1中,主机A到主机B共经过了3个网络和2台路由设备。路由设备到与它直接相连网络的跳数为0,通过一台路由设备可达的网络的跳数为1,其余以此类推。若一台路由设备通过一个网络与另一台路由设备相连接,则这两台路由设备相隔一个网段,在因特网中认为这两台路由设备相邻。

图1 路由跳数和网段的概念

\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 10:40:40\",\"id\":24,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-18 10:40:40\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"路由设备\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:40:41', 527); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (936, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

路由设备的主要功能是路由选择和报文转发。这种功能的实现需用到路由协议。路由协议是路由设备之间维护路由表的规则,用于发现路由,生成路由表,并指导报文转发。


静态路由与动态路由的区别

依据来源的不同,路由可以分为三类:

  • 直连路由:通过链路层协议发现的路由。
  • 静态路由:通过网络管理员手动配置的路由。
  • 动态路由:通过动态路由协议发现的路由。
\",\"createBy\":\"100\",\"createTime\":\"2025-11-18 10:41:06\",\"id\":25,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-18 10:41:06\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"路由协议\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:41:08', 536); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (937, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13388880002', NULL, '/messageRel/read/238', '127.0.0.1', '', '238', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:44:28', 492); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (938, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13388880002', NULL, '/messageRel/read/233', '127.0.0.1', '', '233', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:46:59', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (939, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13388880002', NULL, '/messageRel/read/35', '127.0.0.1', '', '35', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:47:46', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (940, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13388880002', NULL, '/messageRel/read/58', '127.0.0.1', '', '58', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:50:07', 149); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (941, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13388880002', NULL, '/messageRel/read/83', '127.0.0.1', '', '83', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:50:11', 99); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (942, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13388880002', NULL, '/messageRel/read/110', '127.0.0.1', '', '110', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:50:41', 97); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (943, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13388880002', NULL, '/messageRel/read/105', '127.0.0.1', '', '105', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 10:51:24', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (944, 1, '上课信息', 5, 'com.study.teaching.controller.BaseClassSchController.export()', 'POST', 1, 'admin', NULL, '/classSchedule/export', '127.0.0.1', '', '{\"courseName\":\"\",\"academicId\":\"14\",\"pageSize\":\"10\",\"isAsc\":\"asc\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-11-18 10:59:59', 1143); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (945, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王二小', NULL, '/messageRel/read/241', '127.0.0.1', '', '241', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 11:44:22', 235); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (946, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13466666666', NULL, '/messageRel/read/239', '127.0.0.1', '', '239', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 15:32:32', 245); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (947, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13466666666', NULL, '/messageRel/read/234', '127.0.0.1', '', '234', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 15:33:57', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (948, 2, '系统消息', 5, 'com.study.information.controller.BaseNoticeController.export()', 'POST', 1, 'admin', NULL, '/notice/export', '127.0.0.1', '', '{\"schId\":\"2\",\"msgType\":\"2\",\"isDel\":\"0\"}', NULL, 0, NULL, '2025-11-18 15:36:42', 2837); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (949, 1, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10018,\"params\":{},\"questionId\":10330,\"questionMarks\":12,\"questionSortBy\":1},{\"examId\":10018,\"params\":{},\"questionId\":10328,\"questionMarks\":2,\"questionSortBy\":2},{\"examId\":10018,\"params\":{},\"questionId\":10327,\"questionMarks\":2,\"questionSortBy\":3},{\"examId\":10018,\"params\":{},\"questionId\":10329,\"questionMarks\":11,\"questionSortBy\":4},{\"examId\":10018,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":5},{\"examId\":10018,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":6},{\"examId\":10018,\"params\":{},\"questionId\":10326,\"questionMarks\":2,\"questionSortBy\":7},{\"examId\":10018,\"params\":{},\"questionId\":10325,\"questionMarks\":2,\"questionSortBy\":8},{\"examId\":10018,\"params\":{},\"questionId\":10324,\"questionMarks\":2,\"questionSortBy\":9},{\"examId\":10018,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":10},{\"examId\":10018,\"params\":{},\"questionId\":10320,\"questionMarks\":2,\"questionSortBy\":11}],\"createTime\":\"2025-11-18 17:38:31\",\"estimateMark\":10,\"estimateNum\":5,\"examRank\":3,\"examTime\":120,\"examTitle\":\"测试111\",\"fullMark\":41,\"id\":10018,\"multipleMark\":15,\"multipleNum\":3,\"params\":{},\"passMark\":20,\"remark\":\"\",\"schId\":1,\"singleMark\":16,\"singleNum\":3,\"status\":100,\"updateBy\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-18 17:38:33', 492); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (950, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, 'admin', NULL, '/messageRel/read/81', '0:0:0:0:0:0:0:1%0', '', '81', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-19 22:16:22', 136); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (951, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13466666666', NULL, '/messageRel/read/229', '127.0.0.1', '', '229', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 09:55:00', 125); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (952, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王二小', NULL, '/messageRel/read/236', '127.0.0.1', '', '236', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 10:02:37', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (953, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王二小', NULL, '/messageRel/read/231', '127.0.0.1', '', '231', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 10:02:41', 100); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (954, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王二小', NULL, '/messageRel/read/224', '127.0.0.1', '', '224', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 10:03:55', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (955, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王二小', NULL, '/messageRel/read/199', '127.0.0.1', '', '199', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 10:04:07', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (956, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王二小', NULL, '/messageRel/read/174', '127.0.0.1', '', '174', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 10:04:14', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (957, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王二小', NULL, '/messageRel/read/149', '127.0.0.1', '', '149', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 10:04:25', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (958, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13466666666', NULL, '/messageRel/read/222', '127.0.0.1', '', '222', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 10:23:05', 190); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (959, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13466666666', NULL, '/messageRel/read/197', '127.0.0.1', '', '197', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 10:23:14', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (960, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13466666666', NULL, '/messageRel/read/172', '127.0.0.1', '', '172', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 10:23:22', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (961, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13466666666', NULL, '/messageRel/read/147', '127.0.0.1', '', '147', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 10:23:25', 101); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (962, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-20 11:09:21\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/20/17aa81e3ddcdf5cd47333f4a547b2979_20251031030306A255_20251120110843A001.png\",\"mail\":\"13488103555@qq.com\",\"manager\":\"龙小孟\",\"mgrGender\":\"0\",\"mgrPhone\":\"13488103555\",\"params\":{},\"schoolId\":17,\"schoolName\":\"陕西示范大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-20 11:09:21\",\"userId\":123}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:09:22', 608); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (963, 17, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, '13488103555', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"createTime\":\"2025-11-20 11:11:24\",\"id\":32,\"isCurrent\":1,\"isDel\":0,\"isSemester\":0,\"name\":\"2025学年\",\"params\":{},\"schoolId\":17,\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:11:24', 122); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (964, 17, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, '13488103555', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-20 11:12:06\",\"endDate\":\"2025-12-31\",\"id\":33,\"isCurrent\":1,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":32,\"schoolId\":17,\"startDate\":\"2025-09-01\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:12:06', 117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (965, 17, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '13488103555', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0\",\"children\":[],\"createBy\":\"13488103555\",\"deptName\":\"信息工程学院\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"jxg0001\",\"orgDesc\":\"\",\"orgLevel\":1,\"params\":{},\"parentId\":0,\"schId\":17,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:12:28', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (966, 17, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '13488103555', NULL, '/dept', '0:0:0:0:0:0:0:1%0', '', '{\"ancestors\":\"0,22\",\"children\":[],\"createBy\":\"13488103555\",\"deptName\":\"计算机专业\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"jsj0001\",\"orgDesc\":\"\",\"orgLevel\":2,\"params\":{},\"parentId\":22,\"schId\":17,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:12:50', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (967, 17, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '13488103555', NULL, '/dept', '0:0:0:0:0:0:0:1%0', '', '{\"ancestors\":\"0,22,23\",\"children\":[],\"createBy\":\"13488103555\",\"deptName\":\"2024\",\"endYear\":\"\",\"enterYear\":\"2024\",\"orderNum\":0,\"orgCode\":\"2024\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":23,\"schId\":17,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:13:19', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (968, 17, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '13488103555', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":32,\"ancestors\":\"0,22,23,24\",\"children\":[],\"createBy\":\"13488103555\",\"deptName\":\"求真8班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"1232323\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":24,\"schId\":17,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:13:43', 112); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (969, 17, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '13488103555', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":32,\"ancestors\":\"0,22,23,24\",\"children\":[],\"createBy\":\"13488103555\",\"deptName\":\"尚美5班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"sm0001\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":24,\"schId\":17,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:14:08', 106); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (970, 17, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '13488103555', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"code\":\"sx0001\",\"deptClassInfoList\":[{\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\"},{\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\"}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"-\",\"email\":\"13488103666@qq.com\",\"joinTime\":\"2025-11-01\",\"nickName\":\"张大千\",\"params\":{},\"phoneNumber\":\"13488103666\",\"roleId\":140,\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userType\":\"22\"}', NULL, 1, 'java.lang.NullPointerException\n at com.study.system.service.impl.SysRoleServiceImpl.checkRoleDataScope(SysRoleServiceImpl.java:199)\n at com.study.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$33ef9b5a.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$a4377b50.checkRoleDataScope()\n at com.study.system.controller.SysUserController.add(SysUserController.java:347)\n at com.study.system.controller.SysUserController$$FastClassBySpringCGLIB$$e7ab198f.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocati', '2025-11-20 11:15:28', 41); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (971, 17, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '13488103555', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"code\":\"sx0001\",\"deptClassInfoList\":[{\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\"}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"-\",\"email\":\"13488103666@qq.com\",\"joinTime\":\"2025-11-01\",\"nickName\":\"张大千\",\"params\":{},\"phoneNumber\":\"13488103666\",\"roleId\":140,\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userType\":\"22\"}', NULL, 1, 'java.lang.NullPointerException\n at com.study.system.service.impl.SysRoleServiceImpl.checkRoleDataScope(SysRoleServiceImpl.java:199)\n at com.study.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$33ef9b5a.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$a4377b50.checkRoleDataScope()\n at com.study.system.controller.SysUserController.add(SysUserController.java:347)\n at com.study.system.controller.SysUserController$$FastClassBySpringCGLIB$$e7ab198f.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocati', '2025-11-20 11:15:40', 33); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (972, 17, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '13488103555', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"sx0001\",\"deptClassInfoList\":[{\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\"}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"-\",\"email\":\"13488103666@qq.com\",\"joinTime\":\"2025-11-01\",\"nickName\":\"张大千\",\"params\":{},\"phoneNumber\":\"13488103666\",\"roleId\":140,\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userType\":\"22\"}', NULL, 1, 'java.lang.NullPointerException\n at com.study.system.service.impl.SysRoleServiceImpl.checkRoleDataScope(SysRoleServiceImpl.java:199)\n at com.study.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$33ef9b5a.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\n at com.study.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$a4377b50.checkRoleDataScope()\n at com.study.system.controller.SysUserController.add(SysUserController.java:347)\n at com.study.system.controller.SysUserController$$FastClassBySpringCGLIB$$e7ab198f.invoke()\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocati', '2025-11-20 11:16:02', 32); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (973, 17, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, '13488103555', NULL, '/student', '127.0.0.1', '', '{\"address\":\"134556655661345566556613455665566\",\"code\":\"c0001\",\"createBy\":\"13488103555\",\"createTime\":\"2025-11-20 11:29:46\",\"deptAncestors\":[\"22\",\"23\",\"24\",\"25\"],\"deptCode\":\"-\",\"deptId\":25,\"deptInfo\":\"{\\\"deptNames\\\":\\\"信息工程学院,计算机专业,2024,求真8班\\\",\\\"deptIds\\\":\\\"22,23,24,25\\\"}\",\"deptName\":\"-\",\"email\":\"13455665566@qq.com\",\"id\":10,\"joinTime\":\"2025-09-01\",\"params\":{},\"phoneNumber\":\"13455665566\",\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userName\":\"刘备\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:29:46', 441); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (974, 17, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '13488103555', NULL, '/course', '0:0:0:0:0:0:0:1%0', '', '{\"courseDesc\":\"

撒旦发射点发射点

\",\"courseState\":1,\"courseType\":\"1,2\",\"coverUrl\":\"/statics/2025/11/20/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251120113327A002.png\",\"createBy\":\"123\",\"createTime\":\"2025-11-20 11:34:04\",\"id\":23,\"isUse\":1,\"label\":\"不不不\",\"name\":\"测试课程55555\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"课间每日一考题英语练习_20251120113359A003.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/20/课间每日一考题英语练习_20251120113359A003.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":19353929,\\\"metadata\\\":null,\\\"uid\\\":1763609638839,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":1,\"schoolId\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:34:04', 151); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (975, 17, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '13488103555', NULL, '/course/batchReview', '0:0:0:0:0:0:0:1%0', '', '{\"courseIds\":[23],\"params\":{},\"reviewDesc\":\"\",\"reviewState\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:34:31', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (976, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"121212\",\"createBy\":\"admin\",\"deptClassInfoList\":[{\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\"}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"nickName\":\"赵大宝\",\"params\":{},\"phoneNumber\":\"13355555555\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userId\":124,\"userName\":\"13355555555\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 11:45:49', 650); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (977, 17, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '13488103555', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"ct0001\",\"deptClassInfoList\":[{\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\"},{\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\"}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"-\",\"email\":\"13455543334@qq.com\",\"joinTime\":\"2025-11-01\",\"nickName\":\"王大锤\",\"params\":{},\"phoneNumber\":\"13455543334\",\"remark\":\"erwrewer色的方式发发\",\"roleId\":140,\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userType\":\"22\"}', NULL, 1, 'java.lang.NullPointerException\r\n at com.study.system.service.impl.SysRoleServiceImpl.checkRoleDataScope(SysRoleServiceImpl.java:199)\r\n at com.study.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$33ef9b5a.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$76e1a80a.checkRoleDataScope()\r\n at com.study.system.controller.SysUserController.add(SysUserController.java:347)\r\n at com.study.system.controller.SysUserController$$FastClassBySpringCGLIB$$e7ab198f.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(Refle', '2025-11-20 11:49:22', 141); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (978, 17, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '13488103555', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"ct0001\",\"deptClassInfoList\":[{\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\"},{\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\"}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"-\",\"email\":\"13455543334@qq.com\",\"joinTime\":\"2025-11-01\",\"nickName\":\"王大锤\",\"params\":{},\"phoneNumber\":\"13455543334\",\"remark\":\"erwrewer色的方式发发\",\"roleId\":140,\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userType\":\"22\"}', NULL, 1, 'java.lang.NullPointerException\r\n at com.study.system.service.impl.SysRoleServiceImpl.checkRoleDataScope(SysRoleServiceImpl.java:199)\r\n at com.study.system.service.impl.SysRoleServiceImpl$$FastClassBySpringCGLIB$$33ef9b5a.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\r\n at com.study.system.service.impl.SysRoleServiceImpl$$EnhancerBySpringCGLIB$$76e1a80a.checkRoleDataScope()\r\n at com.study.system.controller.SysUserController.add(SysUserController.java:347)\r\n at com.study.system.controller.SysUserController$$FastClassBySpringCGLIB$$e7ab198f.invoke()\r\n at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:792)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\r\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\r\n at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64)\r\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(Refle', '2025-11-20 11:50:10', 29); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (979, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"121212\",\"createBy\":\"admin\",\"deptClassInfoList\":[{\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\"}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"email\":\"12121212@qq.com\",\"joinTime\":\"2025-11-10\",\"nickName\":\" 赵大宝\",\"params\":{},\"phoneNumber\":\"13155555555\",\"roleId\":109,\"roleIds\":[109],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userId\":125,\"userName\":\"13155555555\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 12:03:08', 42546); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (980, 17, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '13488103555', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"ct0001\",\"createBy\":\"13488103555\",\"deptClassInfoList\":[{\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\"},{\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\"}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"-\",\"email\":\"13455543334@qq.com\",\"joinTime\":\"2025-11-01\",\"nickName\":\"王大锤\",\"params\":{},\"phoneNumber\":\"13455543334\",\"remark\":\"erwrewer色的方式发发\",\"roleId\":140,\"roleIds\":[140],\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userId\":126,\"userName\":\"13455543334\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 12:11:15', 11830); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (981, 17, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '13488103555', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

撒旦士大夫

\",\"createBy\":\"123\",\"createTime\":\"2025-11-20 12:13:57\",\"id\":26,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-20 12:13:57\",\"schId\":17,\"sendScope\":3,\"sendState\":0,\"sendType\":1,\"title\":\"撒旦飞洒地方\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 12:13:58', 461); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (982, 17, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '13488103555', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"p0003\",\"createBy\":\"13488103555\",\"deptClassInfoList\":[{\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\"},{\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\"}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"-\",\"email\":\"13566776677@qq.com\",\"joinTime\":\"2025-11-01\",\"nickName\":\"王单位\",\"params\":{},\"phoneNumber\":\"13566776677\",\"remark\":\"的撒旦\",\"roleId\":140,\"roleIds\":[140],\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userId\":127,\"userName\":\"13566776677\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 12:17:50', 703); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (983, 17, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, '13488103555', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"/statics/2025/11/20/file_20251120121851A004.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAEYARgDAREAAhEBAxEB/8QAHwABAAEEAwEBAQAAAAAAAAAAAAYBAgQFAwgJCgcL/8QARxAAAQMDAgMEBwQIBAUDBQAAAQACEQMEIQUxQVFhBgcScQgTgZGhsfAJIsHRFBUZMpPU4fEWVVaSIyVCUmIkM4IXN0NFR//EAB0BAQABBAMBAAAAAAAAAAAAAAAEAQIDBQYHCAn/xABOEQABAwMBBQMICAQDBQYGAwABAAIRAwQhMQUSQVFhBnGBBxMikaGxwfAIFBUyVdHU4RgjlPEzQmIWUnKSkxclNENzgiY2RFNjhKKy1f/aAAwDAQACEQMRAD8A/n/oiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiboir4Txx54RFcKZJ4eySVXdPI+pFd6o9f9p/NV3HcvaPzRPVHr/tP5puO5e0fmieqPX/afzTcdy9o/NFaaZB4e2QVTdPI+pFaWnhnyyqIqbIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIivDCenIRlEXK2iSYgnnwj2TPvV4puPzJ9iLJbbEjMjlsMe/6+eYUCeE+P5IudlpMYJPlPv4D65wswt+IBHXHqwEWQLN2D4CfaI+ZwswtTj0Se785+CLmFm47TttBx/bzWQWx4T7vgiu/QX8vn+au+qP5H1/sitdZuG87bQc/381abY8Z9/wAEXCbN2T4CPaI+YwsZtTn0SO/85+CLHfaROCD5R7uB+uULCbfiQT1x6shFwOtiBiTz2OPf9fLCaBHCPH80WM6iQYgjlxn2TPuWE03D5g+1FxFhHXmIyrEViIiIiIiIiIiIiIiIiI', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 12:18:51', 974); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (984, 17, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '13488103555', NULL, '/notice', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"

测光大是大非测光大是大非测光大是大非

\",\"createBy\":\"123\",\"createTime\":\"2025-11-20 12:22:36\",\"id\":27,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-20 12:22:36\",\"schId\":17,\"sendScope\":3,\"sendState\":0,\"sendType\":1,\"title\":\"测光大是大非\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 12:22:37', 330); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (985, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/242', '0:0:0:0:0:0:0:1%0', '', '242', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 13:13:05', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (986, 17, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, '13488103555', NULL, '/student', '127.0.0.1', '', '{\"address\":\"sdfs发射点士大夫撒旦是非法撒旦发射点\",\"avatar\":\"/statics/2025/11/20/file_20251120142400A005.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAEsASwDAREAAhEBAxEB/8QAHwAAAAYCAwEAAAAAAAAAAAAABAUGBwgJAwsAAgoB/8QAXhAAAgEDAgQEAwUGAwMGBwkRAQIDBAURBiEABxIxCBNBURQiYQkycYGhFSORscHwQtHhFiRSFxgoM2LxJTQ4coKitwpESGNkeIOSsicpNTZDR1NYZ3R3k5Sjp7TS/8QAHgEAAQMFAQEAAAAAAAAAAAAAAAMFBgECBAcICQr/xABIEQABAgQEAwUGBAQFAgUDBQABAhEAAwQhBRIxQQZRYQcTInGBCDKRobHwFMHR4SMzQlIJFXKy8TRzFiQlYoJjg6IXJ1OSs//aAAwDAQACEQMRAD8Av+1lRRRUVrrgu9BqGzz9X/CJaj4JvfutWR2P4e2AnUeY+sY8ONJQRyWe7gJny5KOZR/2fMKs2T+I+mO24BKytD5H6QQ30lLCGYdI7nfA/L09OMdWh8j9IIDPSxbqR39f7/hwhBAVqSHcdP5/r24IIBz0MDBgVBB6dsbenseCCEPfaOCl1Ly6qwuBFq805Yf4VuWnr7RhfXAebyM++MexBBDvXShhexFiuTFcGX1+VXUEfjgtk59fbA4IIbWakiDsCg7k56cHYZ7/AF3H/dwQMRqCICJSQjB6ffY7j9dv04II+mjiJJ3GT7n/AD4IIzLRQhQMZzvkjPfPuT7/AN54IIS1RRxQcwNPSqmBU2G70zEH7xSamnC52Cn5Cc4OckDtwojUwQ592oontlolVQ3TFPGeoA7rLk439z7Z779uKr0Hn9/f7wQlnoIWx8gOM+wxnH0Of04Sggve102c47/Q7D0/xb9/XghSXv6fnA23UUAdAEIyckf+cc+3p3/yG3Fp95Pr9IUh1NN22CflrqMeWrGh5pu2SPmVbhp6B8ZzkBjFknftjHvl7DzPxt9+h9E5m3r+UFQoKdNjGvv2H+vFITg2goIGUDGMDP44AOO47/nwkvUeX5mCDJ7fT/DyKEzmJ+/Y5QjccXS7i3P8hBBhy9o4jYb', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 14:24:00', 811); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (987, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2186,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\"}', '{\"msg\":\"修改角色\'教师\'失败,角色名称已存在\",\"code\":500}', 0, NULL, '2025-11-20 18:15:06', 40); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (988, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2186,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\"}', '{\"msg\":\"修改角色\'教师\'失败,角色名称已存在\",\"code\":500}', 0, NULL, '2025-11-20 18:15:22', 37); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (989, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2186,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-20 18:27:18', 355); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (990, 17, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"/statics/2025/11/20/file_20251120121851A004.jpeg\",\"code\":\"p0003\",\"createBy\":\"13488103555\",\"createTime\":\"2025-11-20 12:17:50\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":22,\"deptName\":\"信息工程学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":25,\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\",\"userId\":127},{\"classId\":26,\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\",\"userId\":127}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"信息工程学院\",\"email\":\"13566776677@qq.com\",\"joinTime\":\"2025-11-01\",\"loginIp\":\"\",\"nickName\":\"王二娃\",\"params\":{},\"phoneNumber\":\"13566776677\",\"remark\":\"的撒旦\",\"roleId\":140,\"roleIds\":[140],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"status\":\"0\"}],\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":127,\"userName\":\"13566776677\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 09:44:27', 791); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (991, 17, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"ct0001\",\"createBy\":\"13488103555\",\"createTime\":\"2025-11-20 12:11:15\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":22,\"deptName\":\"信息工程学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":25,\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\",\"userId\":126},{\"classId\":26,\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\",\"userId\":126}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"信息工程学院\",\"email\":\"13455543334@qq.com\",\"joinTime\":\"2025-11-01\",\"loginDate\":\"2025-11-21 09:42:52\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"王大锤\",\"params\":{},\"phoneNumber\":\"13455543334\",\"remark\":\"erwrewer色的方式发发\",\"roleId\":140,\"roleIds\":[140],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"status\":\"0\"}],\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":126,\"userName\":\"13455543334\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 09:44:37', 768); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (992, 17, '个人信息', 2, 'com.study.system.controller.SysProfileController.updatePwd()', 'PUT', 1, '13455543334', NULL, '/user/profile/updatePwd', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 14:07:56', 317); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (993, 17, '个人信息', 2, 'com.study.system.controller.SysProfileController.updatePwd()', 'PUT', 1, '13455543334', NULL, '/user/profile/updatePwd', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 14:08:49', 286); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (994, 17, '个人信息', 2, 'com.study.system.controller.SysProfileController.updatePwd()', 'PUT', 1, '13455543334', NULL, '/user/profile/updatePwd', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 14:16:10', 286); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (995, 17, '个人信息', 2, 'com.study.system.controller.SysProfileController.updatePwd()', 'PUT', 1, '13455543334', NULL, '/user/profile/updatePwd', '0:0:0:0:0:0:0:1%0', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 14:35:03', 298); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (996, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:16\",\"id\":88,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"中国精神001\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:16\",\"id\":88,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"中国精神001\"}}', 0, NULL, '2025-11-21 15:04:16', 190); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (997, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:22\",\"id\":89,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"中国精神002\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:22\",\"id\":89,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"中国精神002\"}}', 0, NULL, '2025-11-21 15:04:22', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (998, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:29\",\"id\":90,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"中国精神003\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:30\",\"id\":90,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"中国精神003\"}}', 0, NULL, '2025-11-21 15:04:30', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (999, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:38\",\"id\":91,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":88,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神001-aaaa\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:38\",\"id\":91,\"isDel\":0,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":88,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神001-aaaa\"}}', 0, NULL, '2025-11-21 15:04:38', 101); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1000, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:47\",\"id\":92,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":88,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神001-bbb\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:48\",\"id\":92,\"isDel\":0,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":88,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神001-bbb\"}}', 0, NULL, '2025-11-21 15:04:48', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1001, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:56\",\"id\":93,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":88,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神001-ccc\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:04:57\",\"id\":93,\"isDel\":0,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":88,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神001-ccc\"}}', 0, NULL, '2025-11-21 15:04:56', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1002, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:05:11\",\"id\":94,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":89,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神002-ddd\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:05:11\",\"id\":94,\"isDel\":0,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":89,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神002-ddd\"}}', 0, NULL, '2025-11-21 15:05:11', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1003, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:05:19\",\"id\":95,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":89,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神002-eee\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:05:19\",\"id\":95,\"isDel\":0,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":89,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神002-eee\"}}', 0, NULL, '2025-11-21 15:05:19', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1004, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:05:32\",\"id\":96,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":89,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神002-fff\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:05:32\",\"id\":96,\"isDel\":0,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":89,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神002-fff\"}}', 0, NULL, '2025-11-21 15:05:32', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1005, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:05:46\",\"id\":97,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":89,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神002-ggg\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:05:46\",\"id\":97,\"isDel\":0,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":89,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神002-ggg\"}}', 0, NULL, '2025-11-21 15:05:46', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1006, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:05:56\",\"id\":98,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":90,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神003-hhh\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":5,\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:05:57\",\"id\":98,\"isDel\":0,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":90,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"中国精神003-hhh\"}}', 0, NULL, '2025-11-21 15:05:57', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1007, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":88,\"chapterType\":101,\"content\":\"

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

\",\"createTime\":\"2025-11-21 15:06:27\",\"id\":348,\"params\":{},\"schoolId\":1},{\"chapterId\":88,\"chapterType\":102,\"content\":\"

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

\",\"createTime\":\"2025-11-21 15:06:28\",\"id\":349,\"params\":{},\"schoolId\":1},{\"chapterId\":88,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:28\",\"id\":350,\"params\":{},\"schoolId\":1},{\"chapterId\":88,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:28\",\"id\":351,\"params\":{},\"schoolId\":1},{\"chapterId\":88,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:28\",\"id\":352,\"params\":{},\"schoolId\":1},{\"chapterId\":88,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:28\",\"id\":353,\"params\":{},\"schoolId\":1},{\"chapterId\":88,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:28\",\"id\":354,\"params\":{},\"schoolId\":1},{\"chapterId\":88,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:28\",\"id\":355,\"params\":{},\"schoolId\":1},{\"chapterId\":88,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:28\",\"id\":356,\"params\":{},\"schoolId\":1},{\"chapterId\":88,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:28\",\"id\":357,\"params\":{},\"schoolId\":1},{\"chapterId\":88,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:28\",\"id\":358,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:06:29', 1130); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1008, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":91,\"chapterType\":101,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"createTime\":\"2025-11-21 15:06:54\",\"id\":359,\"params\":{},\"schoolId\":1},{\"chapterId\":91,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"createTime\":\"2025-11-21 15:06:54\",\"id\":360,\"params\":{},\"schoolId\":1},{\"chapterId\":91,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:55\",\"id\":361,\"params\":{},\"schoolId\":1},{\"chapterId\":91,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:55\",\"id\":362,\"params\":{},\"schoolId\":1},{\"chapterId\":91,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:55\",\"id\":363,\"params\":{},\"schoolId\":1},{\"chapterId\":91,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:55\",\"id\":364,\"params\":{},\"schoolId\":1},{\"chapterId\":91,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:55\",\"id\":365,\"params\":{},\"schoolId\":1},{\"chapterId\":91,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:55\",\"id\":366,\"params\":{},\"schoolId\":1},{\"chapterId\":91,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:55\",\"id\":367,\"params\":{},\"schoolId\":1},{\"chapterId\":91,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:55\",\"id\":368,\"params\":{},\"schoolId\":1},{\"chapterId\":91,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:06:55\",\"id\":369,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:06:56', 1089); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1009, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":92,\"chapterType\":101,\"content\":\"

中国精神00010-bbbbbbb

\",\"createTime\":\"2025-11-21 15:07:16\",\"id\":370,\"params\":{},\"schoolId\":1},{\"chapterId\":92,\"chapterType\":102,\"content\":\"

中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb

\",\"createTime\":\"2025-11-21 15:07:16\",\"id\":371,\"params\":{},\"schoolId\":1},{\"chapterId\":92,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:16\",\"id\":372,\"params\":{},\"schoolId\":1},{\"chapterId\":92,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:17\",\"id\":373,\"params\":{},\"schoolId\":1},{\"chapterId\":92,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:17\",\"id\":374,\"params\":{},\"schoolId\":1},{\"chapterId\":92,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:17\",\"id\":375,\"params\":{},\"schoolId\":1},{\"chapterId\":92,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:17\",\"id\":376,\"params\":{},\"schoolId\":1},{\"chapterId\":92,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:17\",\"id\":377,\"params\":{},\"schoolId\":1},{\"chapterId\":92,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:17\",\"id\":378,\"params\":{},\"schoolId\":1},{\"chapterId\":92,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:17\",\"id\":379,\"params\":{},\"schoolId\":1},{\"chapterId\":92,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:17\",\"id\":380,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:07:18', 1087); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1010, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":93,\"chapterType\":101,\"content\":\"

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

\",\"createTime\":\"2025-11-21 15:07:34\",\"id\":381,\"params\":{},\"schoolId\":1},{\"chapterId\":93,\"chapterType\":102,\"content\":\"

中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc中国精神00010-cccccccc

\",\"createTime\":\"2025-11-21 15:07:34\",\"id\":382,\"params\":{},\"schoolId\":1},{\"chapterId\":93,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:35\",\"id\":383,\"params\":{},\"schoolId\":1},{\"chapterId\":93,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:35\",\"id\":384,\"params\":{},\"schoolId\":1},{\"chapterId\":93,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:35\",\"id\":385,\"params\":{},\"schoolId\":1},{\"chapterId\":93,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:35\",\"id\":386,\"params\":{},\"schoolId\":1},{\"chapterId\":93,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:35\",\"id\":387,\"params\":{},\"schoolId\":1},{\"chapterId\":93,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:35\",\"id\":388,\"params\":{},\"schoolId\":1},{\"chapterId\":93,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:35\",\"id\":389,\"params\":{},\"schoolId\":1},{\"chapterId\":93,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:35\",\"id\":390,\"params\":{},\"schoolId\":1},{\"chapterId\":93,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:35\",\"id\":391,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:07:36', 1079); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1011, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":94,\"chapterType\":101,\"content\":\"

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

\",\"createTime\":\"2025-11-21 15:07:50\",\"id\":392,\"params\":{},\"schoolId\":1},{\"chapterId\":94,\"chapterType\":102,\"content\":\"

中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd中国精神00010-ddddddddd

\",\"createTime\":\"2025-11-21 15:07:50\",\"id\":393,\"params\":{},\"schoolId\":1},{\"chapterId\":94,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:50\",\"id\":394,\"params\":{},\"schoolId\":1},{\"chapterId\":94,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:50\",\"id\":395,\"params\":{},\"schoolId\":1},{\"chapterId\":94,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:51\",\"id\":396,\"params\":{},\"schoolId\":1},{\"chapterId\":94,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:51\",\"id\":397,\"params\":{},\"schoolId\":1},{\"chapterId\":94,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:51\",\"id\":398,\"params\":{},\"schoolId\":1},{\"chapterId\":94,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:51\",\"id\":399,\"params\":{},\"schoolId\":1},{\"chapterId\":94,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:51\",\"id\":400,\"params\":{},\"schoolId\":1},{\"chapterId\":94,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:51\",\"id\":401,\"params\":{},\"schoolId\":1},{\"chapterId\":94,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:07:51\",\"id\":402,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:07:52', 1065); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1012, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":95,\"chapterType\":101,\"content\":\"

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

\",\"createTime\":\"2025-11-21 15:08:21\",\"id\":403,\"params\":{},\"schoolId\":1},{\"chapterId\":95,\"chapterType\":102,\"content\":\"

中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee中国精神00010-eeeeeeeeeeee

\",\"createTime\":\"2025-11-21 15:08:21\",\"id\":404,\"params\":{},\"schoolId\":1},{\"chapterId\":95,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:21\",\"id\":405,\"params\":{},\"schoolId\":1},{\"chapterId\":95,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:21\",\"id\":406,\"params\":{},\"schoolId\":1},{\"chapterId\":95,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:21\",\"id\":407,\"params\":{},\"schoolId\":1},{\"chapterId\":95,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:21\",\"id\":408,\"params\":{},\"schoolId\":1},{\"chapterId\":95,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:21\",\"id\":409,\"params\":{},\"schoolId\":1},{\"chapterId\":95,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:22\",\"id\":410,\"params\":{},\"schoolId\":1},{\"chapterId\":95,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:22\",\"id\":411,\"params\":{},\"schoolId\":1},{\"chapterId\":95,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:22\",\"id\":412,\"params\":{},\"schoolId\":1},{\"chapterId\":95,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:22\",\"id\":413,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:08:22', 1074); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1013, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":96,\"chapterType\":101,\"content\":\"

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

\",\"createTime\":\"2025-11-21 15:08:36\",\"id\":414,\"params\":{},\"schoolId\":1},{\"chapterId\":96,\"chapterType\":102,\"content\":\"

中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff中国精神00010-fffffff

\",\"createTime\":\"2025-11-21 15:08:36\",\"id\":415,\"params\":{},\"schoolId\":1},{\"chapterId\":96,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:36\",\"id\":416,\"params\":{},\"schoolId\":1},{\"chapterId\":96,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:36\",\"id\":417,\"params\":{},\"schoolId\":1},{\"chapterId\":96,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:36\",\"id\":418,\"params\":{},\"schoolId\":1},{\"chapterId\":96,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:36\",\"id\":419,\"params\":{},\"schoolId\":1},{\"chapterId\":96,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:36\",\"id\":420,\"params\":{},\"schoolId\":1},{\"chapterId\":96,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:36\",\"id\":421,\"params\":{},\"schoolId\":1},{\"chapterId\":96,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:37\",\"id\":422,\"params\":{},\"schoolId\":1},{\"chapterId\":96,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:37\",\"id\":423,\"params\":{},\"schoolId\":1},{\"chapterId\":96,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:37\",\"id\":424,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:08:37', 1055); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1014, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":97,\"chapterType\":101,\"content\":\"

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

\",\"createTime\":\"2025-11-21 15:08:49\",\"id\":425,\"params\":{},\"schoolId\":1},{\"chapterId\":97,\"chapterType\":102,\"content\":\"

中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg中国精神00010-gggggg

\",\"createTime\":\"2025-11-21 15:08:49\",\"id\":426,\"params\":{},\"schoolId\":1},{\"chapterId\":97,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:49\",\"id\":427,\"params\":{},\"schoolId\":1},{\"chapterId\":97,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:49\",\"id\":428,\"params\":{},\"schoolId\":1},{\"chapterId\":97,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:49\",\"id\":429,\"params\":{},\"schoolId\":1},{\"chapterId\":97,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:50\",\"id\":430,\"params\":{},\"schoolId\":1},{\"chapterId\":97,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:50\",\"id\":431,\"params\":{},\"schoolId\":1},{\"chapterId\":97,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:50\",\"id\":432,\"params\":{},\"schoolId\":1},{\"chapterId\":97,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:50\",\"id\":433,\"params\":{},\"schoolId\":1},{\"chapterId\":97,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:50\",\"id\":434,\"params\":{},\"schoolId\":1},{\"chapterId\":97,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:08:50\",\"id\":435,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:08:50', 1247); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1015, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":98,\"chapterType\":101,\"content\":\"

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

\",\"createTime\":\"2025-11-21 15:09:05\",\"id\":436,\"params\":{},\"schoolId\":1},{\"chapterId\":98,\"chapterType\":102,\"content\":\"

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

\",\"createTime\":\"2025-11-21 15:09:05\",\"id\":437,\"params\":{},\"schoolId\":1},{\"chapterId\":98,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:05\",\"id\":438,\"params\":{},\"schoolId\":1},{\"chapterId\":98,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:06\",\"id\":439,\"params\":{},\"schoolId\":1},{\"chapterId\":98,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:06\",\"id\":440,\"params\":{},\"schoolId\":1},{\"chapterId\":98,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:06\",\"id\":441,\"params\":{},\"schoolId\":1},{\"chapterId\":98,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:06\",\"id\":442,\"params\":{},\"schoolId\":1},{\"chapterId\":98,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:06\",\"id\":443,\"params\":{},\"schoolId\":1},{\"chapterId\":98,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:06\",\"id\":444,\"params\":{},\"schoolId\":1},{\"chapterId\":98,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:06\",\"id\":445,\"params\":{},\"schoolId\":1},{\"chapterId\":98,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:06\",\"id\":446,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:09:06', 1045); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1016, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":89,\"chapterType\":101,\"content\":\"

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

\",\"createTime\":\"2025-11-21 15:09:20\",\"id\":447,\"params\":{},\"schoolId\":1},{\"chapterId\":89,\"chapterType\":102,\"content\":\"

中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002中国精神0002

\",\"createTime\":\"2025-11-21 15:09:21\",\"id\":448,\"params\":{},\"schoolId\":1},{\"chapterId\":89,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:21\",\"id\":449,\"params\":{},\"schoolId\":1},{\"chapterId\":89,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:21\",\"id\":450,\"params\":{},\"schoolId\":1},{\"chapterId\":89,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:21\",\"id\":451,\"params\":{},\"schoolId\":1},{\"chapterId\":89,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:21\",\"id\":452,\"params\":{},\"schoolId\":1},{\"chapterId\":89,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:21\",\"id\":453,\"params\":{},\"schoolId\":1},{\"chapterId\":89,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:21\",\"id\":454,\"params\":{},\"schoolId\":1},{\"chapterId\":89,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:21\",\"id\":455,\"params\":{},\"schoolId\":1},{\"chapterId\":89,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:21\",\"id\":456,\"params\":{},\"schoolId\":1},{\"chapterId\":89,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:21\",\"id\":457,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:09:22', 1060); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1017, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":90,\"chapterType\":101,\"content\":\"

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

\",\"createTime\":\"2025-11-21 15:09:37\",\"id\":458,\"params\":{},\"schoolId\":1},{\"chapterId\":90,\"chapterType\":102,\"content\":\"

中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003中国精神0003

\",\"createTime\":\"2025-11-21 15:09:37\",\"id\":459,\"params\":{},\"schoolId\":1},{\"chapterId\":90,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:37\",\"id\":460,\"params\":{},\"schoolId\":1},{\"chapterId\":90,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:38\",\"id\":461,\"params\":{},\"schoolId\":1},{\"chapterId\":90,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:38\",\"id\":462,\"params\":{},\"schoolId\":1},{\"chapterId\":90,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:38\",\"id\":463,\"params\":{},\"schoolId\":1},{\"chapterId\":90,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:38\",\"id\":464,\"params\":{},\"schoolId\":1},{\"chapterId\":90,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:38\",\"id\":465,\"params\":{},\"schoolId\":1},{\"chapterId\":90,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:38\",\"id\":466,\"params\":{},\"schoolId\":1},{\"chapterId\":90,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:38\",\"id\":467,\"params\":{},\"schoolId\":1},{\"chapterId\":90,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-21 15:09:38\",\"id\":468,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-21 15:09:39', 1057); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1018, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"121212\",\"createBy\":\"admin\",\"createTime\":\"2025-11-20 12:03:07\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"userId\":125}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"12121212@qq.com\",\"joinTime\":\"2025-11-10\",\"loginIp\":\"\",\"nickName\":\" 赵大宝\",\"params\":{},\"phoneNumber\":\"13155555555\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":0,\"status\":\"0\"}],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":125,\"userName\":\"13155555555\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 15:15:32', 638); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1019, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"121212\",\"createBy\":\"admin\",\"createTime\":\"2025-11-20 11:45:49\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"userId\":124}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"\",\"loginIp\":\"\",\"nickName\":\"赵大宝\",\"params\":{},\"phoneNumber\":\"13355555555\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"roleSort\":0,\"status\":\"0\"}],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":124,\"userName\":\"13355555555\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 15:15:37', 516); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1020, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"T00999\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 16:21:43\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"\",\"loginIp\":\"\",\"nickName\":\"haha99\",\"params\":{},\"phoneNumber\":\"13388990099\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"roleSort\":0,\"status\":\"0\"}],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":119,\"userName\":\"13388990099\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 15:15:48', 474); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1021, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"121212\",\"createBy\":\"admin\",\"createTime\":\"2025-11-20 12:03:07\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"userId\":125}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"12121212@qq.com\",\"joinTime\":\"2025-11-10\",\"loginIp\":\"\",\"nickName\":\" 赵大宝\",\"params\":{},\"phoneNumber\":\"13155555555\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"roleSort\":0,\"status\":\"0\"}],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":125,\"userName\":\"13155555555\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 15:16:40', 557); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1022, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, 'admin', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"第5教室\",\"classType\":1,\"courseId\":24,\"courseName\":\"中国精神001\",\"createBy\":\"1\",\"createTime\":\"2025-11-21 15:22:05\",\"endDate\":\"2025-12-27\",\"id\":7,\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2025-11-20\",\"state\":1,\"status\":2},\"orgIds\":[5,6,8,9],\"teacherIds\":[125,124,119,117,116,115,114,113,110,2],\"weekList\":[{\"classSchId\":7,\"endTime\":\"10:30\",\"params\":{},\"startTime\":\"08:30\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":7}', 0, NULL, '2025-11-21 15:22:06', 8178); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1023, 1, '上课信息', 2, 'com.study.teaching.controller.BaseClassSchController.updateComplete()', 'PUT', 1, 'admin', NULL, '/classSchedule/updateComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"第5教室\",\"classType\":1,\"courseId\":24,\"courseName\":\"中国精神001\",\"endDate\":\"2025-12-27\",\"id\":7,\"params\":{},\"schId\":1,\"startDate\":\"2025-11-20\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-21 15:47:37\"},\"orgIds\":[5,6,8,9],\"teacherIds\":[125,113,114,115,116,117,119,110,2,124],\"weekList\":[{\"classSchId\":7,\"endTime\":\"10:30:00\",\"params\":{},\"startTime\":\"08:30:00\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排更新成功\",\"code\":200}', 0, NULL, '2025-11-21 15:47:38', 796); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1024, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"题库管理、考试安排、智能评分、成绩分析的综合测评系统\",\"appIconPath\":\"/statics/2025/11/21/ScreenShot_2025-11-21_162421_087_20251121162922A001.png\",\"appId\":4,\"appName\":\"考试系统\",\"appPath\":\"/examSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"4\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-21 16:29:24\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 16:29:24', 129); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1025, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"系统消息、通知公告、校园邮箱等及时推送\",\"appIconPath\":\"/statics/2025/11/21/ScreenShot_2025-11-21_162431_040_20251121162941A002.png\",\"appId\":5,\"appName\":\"信息系统\",\"appPath\":\"/infoSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"5\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-21 16:29:42\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 16:29:42', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1026, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"多维度数据分析,助力教学改进与决策支持\",\"appIconPath\":\"/statics/2025/11/21/ScreenShot_2025-11-21_162451_410_20251121162956A003.png\",\"appId\":7,\"appName\":\"教学分析\",\"appPath\":\"/teachAnalysisSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"7\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-21 16:29:57\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 16:29:57', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1027, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-20 11:09:21\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/20/17aa81e3ddcdf5cd47333f4a547b2979_20251031030306A255_20251120110843A001.png\",\"mail\":\"13488103555@qq.com\",\"manager\":\"龙小孟\",\"mgrGender\":\"0\",\"mgrPhone\":\"13488103555\",\"params\":{},\"schoolId\":17,\"schoolName\":\"陕西示范大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-21 16:30:37\",\"userId\":123}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 16:30:38', 286); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1028, 17, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '13488103555', NULL, '/notice', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"

马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫

\",\"createBy\":\"123\",\"createTime\":\"2025-11-21 16:38:03\",\"id\":28,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-21 16:38:03\",\"schId\":17,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 16:38:04', 694); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1029, 17, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '13488103555', NULL, '/notice', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"

马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫

\",\"createBy\":\"123\",\"createTime\":\"2025-11-21 16:38:57\",\"id\":29,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-11-21 16:38:57\",\"schId\":17,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫马卡鲁士大夫\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 16:38:58', 507); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1030, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13488103555', NULL, '/messageRel/read/249', '0:0:0:0:0:0:0:1%0', '', '249', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 16:39:22', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1031, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13488103555', NULL, '/messageRel/read/244', '0:0:0:0:0:0:0:1%0', '', '244', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-21 16:39:27', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1032, 17, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, '13488103555', NULL, '/classSchedule/createComplete', '0:0:0:0:0:0:0:1%0', '', '{\"classSchedule\":{\"academicId\":33,\"address\":\"908宿舍楼\",\"classType\":1,\"courseId\":25,\"courseName\":\"改革开放四十周年成就展\",\"createBy\":\"123\",\"createTime\":\"2025-11-21 17:19:56\",\"endDate\":\"2025-11-30\",\"id\":8,\"isDel\":0,\"params\":{},\"schId\":17,\"startDate\":\"2025-11-20\",\"state\":1,\"status\":2},\"orgIds\":[25],\"teacherIds\":[126,127],\"weekList\":[{\"classSchId\":8,\"endTime\":\"03:30\",\"params\":{},\"startTime\":\"02:00\",\"weekInfo\":1},{\"classSchId\":8,\"endTime\":\"15:00\",\"params\":{},\"startTime\":\"14:00\",\"weekInfo\":2}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":8}', 0, NULL, '2025-11-21 17:19:57', 730); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1033, 17, '上课信息', 2, 'com.study.teaching.controller.BaseClassSchController.updateComplete()', 'PUT', 1, '13488103555', NULL, '/classSchedule/updateComplete', '0:0:0:0:0:0:0:1%0', '', '{\"classSchedule\":{\"academicId\":33,\"address\":\"908宿舍楼\",\"classType\":1,\"courseId\":25,\"courseName\":\"改革开放四十周年成就展\",\"endDate\":\"2025-11-30\",\"id\":8,\"params\":{},\"schId\":17,\"startDate\":\"2025-11-20\",\"updateBy\":\"123\",\"updateTime\":\"2025-11-21 17:21:01\"},\"orgIds\":[25],\"teacherIds\":[127,126],\"weekList\":[{\"classSchId\":8,\"endTime\":\"03:30:00\",\"params\":{},\"startTime\":\"02:00:00\",\"weekInfo\":1},{\"classSchId\":8,\"endTime\":\"15:00:00\",\"params\":{},\"startTime\":\"14:00:00\",\"weekInfo\":2}]}', '{\"msg\":\"上课安排更新成功\",\"code\":200}', 0, NULL, '2025-11-21 17:21:02', 764); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1034, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"baseExamPlanClassList\":[],\"createBy\":\"admin\",\"createTime\":\"2025-11-22 13:29:50\",\"examAddress\":\"考试地址1111\",\"examEndTime\":\"2025-11-22 15:45:00\",\"examInfoId\":2,\"examStartTime\":\"2025-11-22 12:15:00\",\"examTitle\":\"考试111\",\"id\":108,\"params\":{},\"schId\":1}', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\examine\\BaseExamStudentMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_exam_student(sch_id, plan_id, student_id, exam_full_mark, exam_pass_mark, student_mark, start_exam_time, end_exam_time, exam_status, cheating_num, use_times, status, create_by, create_time, update_by, update_time, remark) values\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 \'\' 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 \'\' at line 1', '2025-11-22 13:29:52', 967); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1035, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"baseExamPlanClassList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"planId\":109},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"planId\":109}],\"createBy\":\"admin\",\"createTime\":\"2025-11-22 13:30:03\",\"examAddress\":\"考试地址1111\",\"examEndTime\":\"2025-11-22 15:45:00\",\"examInfoId\":2,\"examStartTime\":\"2025-11-22 12:15:00\",\"examTitle\":\"考试111\",\"id\":109,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-22 13:30:04', 1039); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1036, 1, '考试安排', 2, 'com.study.examine.controller.BaseExamPlanController.edit()', 'PUT', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"baseExamPlanClassList\":[],\"createBy\":\"admin\",\"createTime\":\"2025-11-22 13:30:04\",\"examAddress\":\"考试地址11112222\",\"examEndTime\":\"2025-11-23 15:45:00\",\"examInfoId\":6,\"examStartTime\":\"2025-11-23 12:15:00\",\"examStatus\":\"1\",\"examTitle\":\"考试11122\",\"id\":109,\"params\":{},\"schId\":1,\"status\":\"0\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-22 13:45:30\"}', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\workspace\\jh\\Study-Cloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\examine\\BaseExamStudentMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_exam_student(sch_id, plan_id, student_id, exam_full_mark, exam_pass_mark, student_mark, start_exam_time, end_exam_time, exam_status, cheating_num, use_times, status, create_by, create_time, update_by, update_time, remark) values\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 \'\' 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 \'\' at line 1', '2025-11-22 13:45:31', 1010); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1037, 1, '考试安排', 2, 'com.study.examine.controller.BaseExamPlanController.edit()', 'PUT', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"baseExamPlanClassList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"planId\":109},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"planId\":109}],\"createBy\":\"1\",\"createTime\":\"2025-11-22 13:30:04\",\"examAddress\":\"考试地址2222\",\"examEndTime\":\"2025-11-23 15:45:00\",\"examInfoId\":6,\"examStartTime\":\"2025-11-23 12:15:00\",\"examStatus\":\"1\",\"examTitle\":\"考试222\",\"id\":109,\"params\":{},\"schId\":1,\"status\":\"0\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-22 13:49:39\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-22 13:49:41', 1266); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1038, 1, '考试安排', 5, 'com.study.examine.controller.BaseExamPlanController.export()', 'POST', 1, 'admin', NULL, '/examPlan/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-22 14:17:19', 2463); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1039, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":6,\"isCurrent\":1,\"isDel\":0,\"isSemester\":0,\"name\":\"2025-2026 学年\",\"params\":{},\"schoolId\":1,\"state\":0,\"updateTime\":\"2025-11-22 15:50:39\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-22 15:50:41', 397); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1040, 1, '学生考试', 5, 'com.study.examine.controller.BaseExamStudentController.export()', 'POST', 1, 'admin', NULL, '/examStudent/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"100000\",\"AcademicId\":\"14\",\"planId\":\"3\",\"pageNum\":\"1\"}', NULL, 1, 'nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property \'studentName\' of \'class com.study.examine.domain.BaseExamStudent\' with value \'王武\' Cause: org.apache.ibatis.reflection.ReflectionException: There is no setter for property named \'studentName\' in \'class com.study.examine.domain.BaseExamStudent\'', '2025-11-22 21:29:20', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1041, 1, '考试监控', 5, 'com.study.examine.controller.BaseExamStudentMonController.export()', 'POST', 1, 'admin', NULL, '/examStudentMon/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"100000\",\"AcademicId\":\"14\",\"planId\":\"3\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-22 21:30:20', 1526); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1042, 1, '考试安排', 3, 'com.study.examine.controller.BaseExamPlanController.remove()', 'DELETE', 1, 'admin', NULL, '/examPlan/107', '127.0.0.1', '', '[107]', NULL, 1, '考试 “+统计专用计划7+“ 不能删除', '2025-11-22 21:55:34', 286); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1043, 1, '考试安排', 3, 'com.study.examine.controller.BaseExamPlanController.remove()', 'DELETE', 1, 'admin', NULL, '/examPlan/107', '127.0.0.1', '', '[107]', NULL, 1, '考试 “+统计专用计划7+“ 不能删除', '2025-11-22 21:55:42', 267); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1044, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"planId\":110},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"planId\":110}],\"createBy\":\"1\",\"createTime\":\"2025-11-23 20:01:35\",\"examAddress\":\"12122\",\"examEndTime\":\"2025-11-24 13:00:00\",\"examInfoId\":6,\"examStartTime\":\"2025-11-24 09:30:00\",\"examTitle\":\"测试计划2\",\"id\":110,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-23 20:01:37', 1175); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1045, 1, '考试安排', 2, 'com.study.examine.controller.BaseExamPlanController.edit()', 'PUT', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"planId\":110},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"planId\":110}],\"createBy\":\"1\",\"createTime\":\"2025-11-23 20:01:36\",\"examAddress\":\"12122\",\"examEndTime\":\"2025-11-24 13:00:00\",\"examInfoId\":6,\"examStartTime\":\"2025-11-24 09:30:00\",\"examStatus\":\"1\",\"examTitle\":\"测试计划2\",\"id\":110,\"params\":{},\"schId\":1,\"status\":\"0\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-23 20:01:48\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-23 20:01:49', 1401); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1046, 1, '考试监控', 5, 'com.study.examine.controller.BaseExamStudentMonController.export()', 'POST', 1, 'admin', NULL, '/examStudentMon/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"100000\",\"AcademicId\":\"14\",\"planId\":\"1\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-23 20:13:34', 2111); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1047, 1, '学生考试', 5, 'com.study.examine.controller.BaseExamStudentController.export()', 'POST', 1, 'admin', NULL, '/examStudent/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"100000\",\"AcademicId\":\"14\",\"planId\":\"110\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-23 20:19:18', 219); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1048, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/user/editSecretKey/111', '127.0.0.1', '', '[111]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-23 21:44:48', 685); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1049, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

2222

\",\"createBy\":\"1\",\"createTime\":\"2025-11-24 09:52:23\",\"id\":30,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-11-24 09:52:23\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"11111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-24 09:52:30', 4803); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1050, 17, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, '13488103555', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10020,\"params\":{},\"questionId\":10328,\"questionMarks\":2,\"questionSortBy\":1},{\"examId\":10020,\"params\":{},\"questionId\":10327,\"questionMarks\":2,\"questionSortBy\":2},{\"examId\":10020,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":3},{\"examId\":10020,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":4},{\"examId\":10020,\"params\":{},\"questionId\":10323,\"questionMarks\":2,\"questionSortBy\":5},{\"examId\":10020,\"params\":{},\"questionId\":10320,\"questionMarks\":2,\"questionSortBy\":6}],\"createTime\":\"2025-11-24 10:59:48\",\"estimateMark\":4,\"estimateNum\":2,\"examCourseId\":14,\"examRank\":3,\"examTime\":120,\"examTitle\":\"测试试卷龙小孟\",\"fullMark\":12,\"id\":10020,\"multipleMark\":2,\"multipleNum\":1,\"params\":{},\"passMark\":10,\"remark\":\"zczzx fds撒旦发射点发射点\",\"schId\":17,\"singleMark\":6,\"singleNum\":3,\"status\":100,\"updateBy\":\"123\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-24 10:59:49', 277); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1051, 17, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, '13488103555', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":33,\"baseExamPlanClassList\":[{\"classId\":25,\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\",\"params\":{},\"planId\":111},{\"classId\":26,\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\",\"params\":{},\"planId\":111}],\"createBy\":\"123\",\"createTime\":\"2025-11-24 11:02:00\",\"examAddress\":\"教学楼\",\"examEndTime\":\"2025-11-24 12:30:00\",\"examInfoId\":10020,\"examStartTime\":\"2025-11-24 10:30:00\",\"examTitle\":\"龙小孟的考试安排1\",\"id\":111,\"params\":{},\"schId\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-24 11:02:01', 394); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1052, 17, '考试安排', 5, 'com.study.examine.controller.BaseExamPlanController.export()', 'POST', 1, '13488103555', NULL, '/examPlan/export', '127.0.0.1', '', '{\"schId\":\"17\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"id\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-11-24 11:02:58', 1160); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1053, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理系统\",\"updateTime\":\"2025-11-24 14:37:10\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识111\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-24 14:37:11', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1054, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_todo\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-24 17:11:06', 654); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1055, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"todo\",\"className\":\"BaseTodo\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1497,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-24 17:11:05\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":106,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"待办名称\",\"columnId\":1498,\"columnName\":\"name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-24 17:11:05\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"false\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":106,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"UserId\",\"columnComment\":\"用户ID\",\"columnId\":1499,\"columnName\":\"user_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-24 17:11:05\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"false\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"userId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":106,\"updateBy\":\"\",\"usableColumn\":false}],\"crud\":true,\"functionAuthor\":\"陕西研筑信息技术\",\"functionName\":\"待办\",\"genPath\":\"/\",\"genType\":\"0\",\"moduleName\":\"system\",\"options\":\"{\\\"parentMenuId\\\":4}\",\"packageName\":\"com.study.system\",\"params\":{\"parentMenuId\":4},\"parentMenuId\":4,\"sub\":false,\"tableComment\":\"待办表\",\"tableId\":106,\"tableName\":\"base_todo\",\"tplCategory\":\"crud\",\"tplWebType\":\"\",\"tree\":false}', NULL, 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_edit\' at row 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-modules\\study-gen\\target\\classes\\mapper\\generator\\GenTableColumnMapper.xml]\r\n### The error may involve com.study.gen.mapper.GenTableColumnMapper.updateGenTableColumn-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update gen_table_column SET column_comment = ?, java_type = ?, java_field = ?, is_insert = ?, is_edit = ?, is_list = ?, is_query = ?, query_type = ?, html_type = ?, dict_type = ?, sort = ?, update_by = ?, update_time = sysdate() where column_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_edit\' at row 1\n; Data truncation: Data too long for column \'is_edit\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'is_edit\' at row 1', '2025-11-24 17:13:46', 557); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1056, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"todo\",\"className\":\"BaseTodo\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1497,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-24 17:11:05\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"1\",\"isQuery\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":true,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":106,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"待办名称\",\"columnId\":1498,\"columnName\":\"name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-11-24 17:11:05\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":106,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"UserId\",\"columnComment\":\"用户ID\",\"columnId\":1499,\"columnName\":\"user_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-11-24 17:11:05\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"userId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":106,\"updateBy\":\"\",\"usableColumn\":false}],\"crud\":true,\"functionAuthor\":\"陕西研筑信息技术\",\"functionName\":\"待办\",\"genPath\":\"/\",\"genType\":\"0\",\"moduleName\":\"system\",\"options\":\"{\\\"parentMenuId\\\":4}\",\"packageName\":\"com.study.system\",\"params\":{\"parentMenuId\":4},\"parentMenuId\":4,\"sub\":false,\"tableComment\":\"待办表\",\"tableId\":106,\"tableName\":\"base_todo\",\"tplCategory\":\"crud\",\"tplWebType\":\"\",\"tree\":false}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-24 17:14:01', 337); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1057, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_todo\"}', NULL, 0, NULL, '2025-11-24 17:14:05', 357); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1058, 1, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, 'admin', NULL, '/todo/1', '127.0.0.1', '', '[1]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-24 17:43:07', 110); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1059, 1, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, 'admin', NULL, '/course', '0:0:0:0:0:0:0:1%0', '', '{\"courseDesc\":\"

实现中华民族伟大复兴的中国梦,必须弘扬中国精神,这就是以爱国主义为核心的民族精神和以改革创新为核心的时代精神。中国精神贯穿于中华民族五千年历史、积蕴于近现代中华民族复兴历程,特别是在中国的快速崛起中迸发出来的具有很强的民族集聚、动员与感召效应的精神及其气象,是中国文化软实力的重要显示。

习近平总书记在第十二届全国人民代表大会第一次会议上指出,中国精神是凝心聚力的兴国之魂、强国之魂。爱国主义始终是把中华民族坚强团结在一起的精神力量,改革创新始终是鞭策我们在改革开放中与时俱进的精神力量。 [1] 2015年1月19日,从中央政府门户网站了解到,教育部发布的《中等职业学校德育大纲(2014年修订)》把中国精神教育纳入其中。要求加强以爱国主义为核心的民族精神教育,加强以改革创新为核心的时代精神教育,加强中华优秀传统文化教育以及中共党史与国情教育。

\",\"courseState\":1,\"courseType\":\"1,2\",\"coverUrl\":\"/statics/2025/10/28/6_20251028181826A005.png\",\"createBy\":\"1\",\"id\":24,\"isUse\":1,\"label\":\"二十大精神,理论教学\",\"name\":\"中国精神001\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"【邓超龙】马克思主义的诞生与传播.mp4 | 砺儒云课堂_20251125101115A001.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/25/【邓超龙】马克思主义的诞生与传播.mp4 | 砺儒云课堂_20251125101115A001.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":87670710,\\\"metadata\\\":null,\\\"uid\\\":1764036675806,\\\"status\\\":\\\"success\\\"},{\\\"name\\\":\\\"中硕思政-需求说明书(4)_20251125101336A002.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/25/中硕思政-需求说明书(4)_20251125101336A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":5290893,\\\"metadata\\\":null,\\\"uid\\\":1764036816440,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":2,\"schoolId\":1,\"updateTime\":\"2025-11-25 10:13:39\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-25 10:13:40', 174); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1060, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-25 15:14:57\",\"description\":\"

aaaaaa

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":44,\"name\":\"aaa\",\"params\":{},\"premiumTypes\":\"\",\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":6,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"超级管理员\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-25 15:14:57\",\"description\":\"

aaaaaa

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":44,\"name\":\"aaa\",\"params\":{},\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":6,\"viewCount\":0}}', 0, NULL, '2025-11-25 15:14:57', 215); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1061, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, 'admin', NULL, '/resource/approve', '127.0.0.1', '', '{\"approvalAdvice\":\"\",\"approvalState\":2,\"approverId\":100,\"idList\":[44],\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"approverId\":100,\"idList\":[44],\"params\":{}}}', 0, NULL, '2025-11-25 15:19:02', 245); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1062, 17, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, '13488103555', NULL, '/student', '0:0:0:0:0:0:0:1%0', '', '{\"address\":\"我的联系地址\",\"code\":\"10086\",\"createBy\":\"13488103555\",\"createTime\":\"2025-11-26 09:25:10\",\"deptAncestors\":[\"22\",\"23\",\"24\",\"26\"],\"deptCode\":\"-\",\"deptId\":26,\"deptInfo\":\"{\\\"deptNames\\\":\\\"信息工程学院,计算机专业,2024,尚美5班\\\",\\\"deptIds\\\":\\\"22,23,24,26\\\"}\",\"deptName\":\"-\",\"email\":\"13669666666@qq.com\",\"id\":12,\"joinTime\":\"2025-11-01\",\"params\":{},\"phoneNumber\":\"13669666666\",\"remark\":\"发士大夫十分士大夫胜多负少\",\"schId\":17,\"sex\":\"1\",\"status\":\"0\",\"userName\":\"关羽\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 09:25:11', 602); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1063, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":102,\"chapterType\":101,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":535,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":536,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":2,\"content\":\"\",\"id\":537,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":1,\"content\":\"\",\"id\":538,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":7,\"content\":\"\",\"id\":539,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":9,\"content\":\"\",\"id\":540,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":103,\"content\":\"\",\"id\":541,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":null,\\\"createByUserName\\\":null,\\\"createTime\\\":null,\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-26 11:29:10\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":31,\\\"name\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/05/中硕思政-需求说明书_20251105173357A012.docx\\\",\\\"coverImgPath\\\":\\\"http://121.36.55.43:9978/%E6%80%9D%E6%94%BF%E6%95%99%E5%AD%A6%E7%B3%BB%E7%BB%9F/img/3.png\\\",\\\"description\\\":\\\"人工智能前沿技术讲座.pptx\\\",\\\"viewCount\\\":100,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/07/C_C++ 多线程编程精髓_专栏_20251107113139A001.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":6611125,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1762486300329,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":1,\\\"typeId\\\":10,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes', '{\"msg\":\"批量处理失败: \\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n### The error may exist in URL [jar:file:/www/java/study-modules-teaching.jar!/BOOT-INF/lib/study-common-mapper-3.6.6.jar!/mapper/teaching/BaseClassSchMapper.xml]\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\n### The error occurred while setting parameters\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 15:17:23', 213); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1064, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:29:05\",\"description\":\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":14794783,\\\"metadata\\\":null,\\\"uid\\\":1764142124231,\\\"status\\\":\\\"success\\\"}]\",\"id\":45,\"name\":\"测试视频资源1\",\"params\":{},\"premiumTypes\":\"1,2\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"1\",\"typeId\":2,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:29:05\",\"description\":\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":14794783,\\\"metadata\\\":null,\\\"uid\\\":1764142124231,\\\"status\\\":\\\"success\\\"}]\",\"id\":45,\"name\":\"测试视频资源1\",\"params\":{},\"premiumTypes\":\"1,2\",\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"1\",\"typeId\":2,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:29:05', 141); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1065, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/20250610_183001_001_20251126153036A005.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:31:36\",\"description\":\"

测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"2月11日(5)_20251126153128A006.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/2月11日(5)_20251126153128A006.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":8891978,\\\"metadata\\\":null,\\\"uid\\\":1764142289089,\\\"status\\\":\\\"success\\\"}]\",\"id\":46,\"name\":\"测试视频2222\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"2\",\"typeId\":2,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/20250610_183001_001_20251126153036A005.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:31:36\",\"description\":\"

测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222测试视频2222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"2月11日(5)_20251126153128A006.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/2月11日(5)_20251126153128A006.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":8891978,\\\"metadata\\\":null,\\\"uid\\\":1764142289089,\\\"status\\\":\\\"success\\\"}]\",\"id\":46,\"name\":\"测试视频2222\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"2\",\"typeId\":2,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:31:36', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1066, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:32:34\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"id\":47,\"name\":\"测试课件111111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"1\",\"typeId\":1,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:32:34\",\"description\":\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764142351913,\\\"status\\\":\\\"success\\\"}]\",\"id\":47,\"name\":\"测试课件111111\",\"params\":{},\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"1\",\"typeId\":1,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:32:35', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1067, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:33:38\",\"description\":\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":19353929,\\\"metadata\\\":null,\\\"uid\\\":1764142415469,\\\"status\\\":\\\"success\\\"}]\",\"id\":48,\"name\":\"测试课件222222\",\"params\":{},\"premiumTypes\":\"2\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":3,\"state\":1,\"subjectId\":3,\"tagIds\":\"1\",\"typeId\":1,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:33:38\",\"description\":\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":19353929,\\\"metadata\\\":null,\\\"uid\\\":1764142415469,\\\"status\\\":\\\"success\\\"}]\",\"id\":48,\"name\":\"测试课件222222\",\"params\":{},\"premiumTypes\":\"2\",\"schId\":1,\"source\":\"1\",\"stage\":3,\"state\":1,\"subjectId\":3,\"tagIds\":\"1\",\"typeId\":1,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:33:38', 79); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1068, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/微信截图_20250425092336_20251126153554A010.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:37:51\",\"description\":\"

测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"课件_20251126153740A011.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/26/课件_20251126153740A011.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":39665,\\\"metadata\\\":null,\\\"uid\\\":1764142660332,\\\"status\\\":\\\"success\\\"}]\",\"id\":49,\"name\":\"测试教案11111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"1,2\",\"typeId\":3,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/微信截图_20250425092336_20251126153554A010.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:37:51\",\"description\":\"

测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111测试教案11111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"课件_20251126153740A011.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/26/课件_20251126153740A011.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":39665,\\\"metadata\\\":null,\\\"uid\\\":1764142660332,\\\"status\\\":\\\"success\\\"}]\",\"id\":49,\"name\":\"测试教案11111\",\"params\":{},\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"1,2\",\"typeId\":3,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:37:51', 83); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1069, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_153834_725_20251126153846A012.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:39:50\",\"description\":\"

测试课件2222222测试课件2222222测试课件2222222测试课件2222222测试课件2222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"课件_20251126153947A013.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/26/课件_20251126153947A013.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":39665,\\\"metadata\\\":null,\\\"uid\\\":1764142787999,\\\"status\\\":\\\"success\\\"}]\",\"id\":50,\"name\":\"测试课件2222222\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"3,4\",\"typeId\":3,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_153834_725_20251126153846A012.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:39:50\",\"description\":\"

测试课件2222222测试课件2222222测试课件2222222测试课件2222222测试课件2222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"课件_20251126153947A013.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/26/课件_20251126153947A013.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":39665,\\\"metadata\\\":null,\\\"uid\\\":1764142787999,\\\"status\\\":\\\"success\\\"}]\",\"id\":50,\"name\":\"测试课件2222222\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"3,4\",\"typeId\":3,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:39:50', 80); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1070, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251126154019A014.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:40:36\",\"description\":\"

测试图片1111测试图片1111测试图片1111测试图片1111测试图片1111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"u=2024464793,1878830599&fm=253&app=138&f=JPEG_20251126154029A015.jpg\\\",\\\"url\\\":\\\"/statics/2025/11/26/u=2024464793,1878830599&fm=253&app=138&f=JPEG_20251126154029A015.jpg\\\",\\\"originalName\\\":null,\\\"size\\\":156070,\\\"metadata\\\":null,\\\"uid\\\":1764142829819,\\\"status\\\":\\\"success\\\"}]\",\"id\":51,\"name\":\"测试图片1111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"2,3\",\"typeId\":4,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251126154019A014.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:40:36\",\"description\":\"

测试图片1111测试图片1111测试图片1111测试图片1111测试图片1111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"u=2024464793,1878830599&fm=253&app=138&f=JPEG_20251126154029A015.jpg\\\",\\\"url\\\":\\\"/statics/2025/11/26/u=2024464793,1878830599&fm=253&app=138&f=JPEG_20251126154029A015.jpg\\\",\\\"originalName\\\":null,\\\"size\\\":156070,\\\"metadata\\\":null,\\\"uid\\\":1764142829819,\\\"status\\\":\\\"success\\\"}]\",\"id\":51,\"name\":\"测试图片1111\",\"params\":{},\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"2,3\",\"typeId\":4,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:40:36', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1071, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_153834_725_20251126154045A016.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:41:26\",\"description\":\"

测试图片1111测试图片1111测试图片1111测试图片1111测试图片1111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251126154114A017.png\\\",\\\"url\\\":\\\"/statics/2025/11/26/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251126154114A017.png\\\",\\\"originalName\\\":null,\\\"size\\\":1660147,\\\"metadata\\\":null,\\\"uid\\\":1764142875196,\\\"status\\\":\\\"success\\\"}]\",\"id\":52,\"name\":\"测试图片222222\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":3,\"state\":1,\"subjectId\":2,\"tagIds\":\"2\",\"typeId\":4,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_153834_725_20251126154045A016.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:41:26\",\"description\":\"

测试图片1111测试图片1111测试图片1111测试图片1111测试图片1111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251126154114A017.png\\\",\\\"url\\\":\\\"/statics/2025/11/26/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166 拷贝_20251126154114A017.png\\\",\\\"originalName\\\":null,\\\"size\\\":1660147,\\\"metadata\\\":null,\\\"uid\\\":1764142875196,\\\"status\\\":\\\"success\\\"}]\",\"id\":52,\"name\":\"测试图片222222\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"stage\":3,\"state\":1,\"subjectId\":2,\"tagIds\":\"2\",\"typeId\":4,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:41:26', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1072, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154246A018.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:43:22\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"Empire of Angels_20251126154315A019.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Empire of Angels_20251126154315A019.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":5065709,\\\"metadata\\\":null,\\\"uid\\\":1764142995804,\\\"status\\\":\\\"success\\\"}]\",\"id\":53,\"name\":\"测试音频111111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"3\",\"typeId\":5,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154246A018.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:43:22\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111测试音频111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"Empire of Angels_20251126154315A019.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Empire of Angels_20251126154315A019.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":5065709,\\\"metadata\\\":null,\\\"uid\\\":1764142995804,\\\"status\\\":\\\"success\\\"}]\",\"id\":53,\"name\":\"测试音频111111\",\"params\":{},\"schId\":1,\"source\":\"1\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"3\",\"typeId\":5,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:43:22', 79); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1073, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154418A021.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:44:26\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频2222222222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"Immortal_20251126154358A020.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":3965640,\\\"metadata\\\":null,\\\"uid\\\":1764143038890,\\\"status\\\":\\\"success\\\"}]\",\"id\":54,\"name\":\"测试音频22222222\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"4,5\",\"typeId\":5,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154235_768_20251126154418A021.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:44:26\",\"description\":\"

测试音频111111测试音频111111测试音频111111测试音频2222222222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"Immortal_20251126154358A020.mp3\\\",\\\"url\\\":\\\"/statics/2025/11/26/Immortal_20251126154358A020.mp3\\\",\\\"originalName\\\":null,\\\"size\\\":3965640,\\\"metadata\\\":null,\\\"uid\\\":1764143038890,\\\"status\\\":\\\"success\\\"}]\",\"id\":54,\"name\":\"测试音频22222222\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"4,5\",\"typeId\":5,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:44:26', 82); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1074, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154535_535_20251126154543A022.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:46:34\",\"description\":\"

飒飒飒飒的

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"name\":\"测试链接1111111111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"3\",\"sourceUrl\":\"https://image.baidu.com/search/detail?adpicid=0&b_applid=7583247966835504327&bdtype=14&commodity=©right=&cs=1083980231%2C2741455022&di=58720257&fr=click-pic&fromurl=https%253A%252F%252Fmobile.yangkeduo.com%252Fgoods.html%253Fgoods_id%253D275414786067&gsm=1e&hd=&height=0&hot=&ic=&ie=utf-8&imgformat=&imgratio=&imgspn=0&is=0%2C0&isImgSet=&latest=&lid=&lm=&objurl=https%253A%252F%252Fmobile.yangkeduo.com%252Fgoods.html%253Fgoods_id%253D275414786067&os=624918040%2C4012918318&pd=image_content&pi=0&pn=3&rn=1&simid=1083980231%2C2741455022&tn=baiduimagedetail&width=0&word=%E9%93%BE%E6%8E%A5&z=\",\"stage\":1,\"state\":1,\"subjectId\":3,\"tagIds\":\"2\",\"typeId\":6,\"viewCount\":0}', NULL, 1, '\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'source_url\' at row 1\n### The error may exist in URL [jar:file:/www/java/study-modules-resource.jar!/BOOT-INF/lib/study-common-mapper-3.6.6.jar!/mapper/resource/BaseResourceMapper.xml]\n### The error may involve com.study.resource.mapper.BaseResourceMapper.insertBaseResource-Inline\n### The error occurred while setting parameters\n### SQL: insert into base_resource ( name, author_id, source, source_url, cover_img_path, description, view_count, download_count, file_config, category_id, subject_id, type_id, stage, tag_ids, premium_types, approval_state, state, sch_id, create_by, create_time ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'source_url\' at row 1\n; Data truncation: Data too long for column \'source_url\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'source_url\' at row 1', '2025-11-26 15:46:34', 136); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1075, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154535_535_20251126154543A022.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:46:46\",\"description\":\"

飒飒飒飒的

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":55,\"name\":\"测试链接1111111111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"3\",\"sourceUrl\":\"https://image.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":3,\"tagIds\":\"2\",\"typeId\":6,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154535_535_20251126154543A022.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:46:46\",\"description\":\"

飒飒飒飒的

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":55,\"name\":\"测试链接1111111111\",\"params\":{},\"schId\":1,\"source\":\"3\",\"sourceUrl\":\"https://image.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":3,\"tagIds\":\"2\",\"typeId\":6,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:46:46', 54); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1076, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154535_535_20251126154704A023.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:48:02\",\"description\":\"

啊实打实打算

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":56,\"name\":\"测试链接222222222\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"3\",\"sourceUrl\":\"https://www.hifihi.com\",\"stage\":3,\"state\":1,\"subjectId\":3,\"tagIds\":\"2\",\"typeId\":6,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_154535_535_20251126154704A023.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:48:02\",\"description\":\"

啊实打实打算

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":56,\"name\":\"测试链接222222222\",\"params\":{},\"schId\":1,\"source\":\"3\",\"sourceUrl\":\"https://www.hifihi.com\",\"stage\":3,\"state\":1,\"subjectId\":3,\"tagIds\":\"2\",\"typeId\":6,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:48:02', 81); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1077, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/图片12_20251126154907A024.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:49:37\",\"description\":\"

测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251126154935A025.obj\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1764143375410,\\\"status\\\":\\\"success\\\"}]\",\"id\":57,\"name\":\"测试模型1111111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"2\",\"typeId\":8,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/图片12_20251126154907A024.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:49:37\",\"description\":\"

测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111测试模型1111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"IndustrialBuilding10_20251126154935A025.obj\\\",\\\"url\\\":\\\"/statics/虚拟仿真3dModel/2025/11/26/IndustrialBuilding10_20251126154935A025.obj\\\",\\\"originalName\\\":null,\\\"size\\\":598034,\\\"metadata\\\":\\\"虚拟仿真3dModel\\\",\\\"uid\\\":1764143375410,\\\"status\\\":\\\"success\\\"}]\",\"id\":57,\"name\":\"测试模型1111111\",\"params\":{},\"schId\":1,\"source\":\"1\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"2\",\"typeId\":8,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:49:37', 77); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1078, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:52:28\",\"description\":\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764143538858,\\\"status\\\":\\\"success\\\"}]\",\"id\":58,\"name\":\"测试图书1111111111\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"2\",\"typeId\":10,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:52:28\",\"description\":\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764143538858,\\\"status\\\":\\\"success\\\"}]\",\"id\":58,\"name\":\"测试图书1111111111\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":2,\"tagIds\":\"2\",\"typeId\":10,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:52:29', 80); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1079, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155244A028.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:53:25\",\"description\":\"

测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126155321A029.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155321A029.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764143602160,\\\"status\\\":\\\"success\\\"}]\",\"id\":59,\"name\":\"测试图书2222222222\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"3\",\"typeId\":10,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155244A028.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:53:25\",\"description\":\"

测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126155321A029.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155321A029.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764143602160,\\\"status\\\":\\\"success\\\"}]\",\"id\":59,\"name\":\"测试图书2222222222\",\"params\":{},\"schId\":1,\"source\":\"1\",\"stage\":2,\"state\":1,\"subjectId\":2,\"tagIds\":\"3\",\"typeId\":10,\"viewCount\":0}}', 0, NULL, '2025-11-26 15:53:25', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1080, 1, '基础题库', 2, 'com.study.examine.controller.BaseExamQuestionController.edit()', 'PUT', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"答题卡222\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10330},{\"description\":\"答题卡444\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10330},{\"description\":\"答题卡44455666\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10330}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 20:25:57\",\"id\":10330,\"params\":{},\"questionAnalysis\":\"测试\",\"questionAnswer\":\"B\",\"questionCourseId\":3,\"questionCourseName\":\"-\",\"questionDesc\":\"这是什么题目\",\"questionKnowledge\":\"知识点1,知识点2,...\",\"questionRank\":\"0.4\",\"questionScore\":\"12\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-26 15:54:20\",\"useNumber\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 15:54:20', 323); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1081, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"1945\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10331},{\"description\":\"1946\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10331},{\"description\":\"1947\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10331},{\"description\":\"1949\",\"isOk\":1,\"option\":\"D\",\"params\":{},\"questionId\":10331}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:55:32\",\"id\":10331,\"params\":{},\"questionAnalysis\":\"1949年啊\",\"questionAnswer\":\"D\",\"questionCourseId\":23,\"questionCourseName\":\"-\",\"questionDesc\":\"中国是什么时间成立的\",\"questionRank\":\"0.4\",\"questionScore\":\"10\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 15:55:32', 228); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1082, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"因为太阳晒的\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10332},{\"description\":\"因为光的反射\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10332},{\"description\":\"因为有叶绿素\",\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10332},{\"description\":\"以上都对\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10332}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:57:00\",\"id\":10332,\"params\":{},\"questionAnalysis\":\"因为有叶绿素\",\"questionAnswer\":\"C\",\"questionCourseId\":23,\"questionCourseName\":\"-\",\"questionDesc\":\"叶子为什么是绿的\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 15:57:00', 224); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1083, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"阶级立场\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10333},{\"description\":\"人民立场\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10333},{\"description\":\"民族立场\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10333},{\"description\":\"个人立场\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10333}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:04:59\",\"id\":10333,\"params\":{},\"questionAnalysis\":\"民族立场民族立场民族立场民族立场\",\"questionAnswer\":\"B\",\"questionCourseId\":14,\"questionCourseName\":\"-\",\"questionDesc\":\"1.马克思主义的根本立场是( )\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:05:00', 223); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1084, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"实事求是、群众路线、独立自主\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10334},{\"description\":\"统一战线、武装斗争、党的建设\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10334},{\"description\":\"实事求是、独立自主、统一战线\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10334},{\"description\":\"群众路线、武装斗争、独立自主\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10334}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:06:00\",\"id\":10334,\"params\":{},\"questionAnalysis\":\"实事求是、群众路线、独立自主实事求是、群众路线、独立自主\",\"questionAnswer\":\"A\",\"questionCourseId\":24,\"questionCourseName\":\"-\",\"questionDesc\":\"毛泽东思想活的灵魂的三个基本方面是( )\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:06:01', 223); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1085, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"“八个明确”\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10335},{\"description\":\" “十个明确”\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10335},{\"description\":\"“十四个坚持” \",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10335},{\"description\":\"“十三个方面成就”\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10335}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:07:11\",\"id\":10335,\"params\":{},\"questionAnalysis\":\" “十个明确” “十个明确” “十个明确” “十个明确”\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionCourseName\":\"-\",\"questionDesc\":\"3.习近平新时代中国特色社会主义思想的核心要义是( )\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:07:11', 223); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1086, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"实现共产主义\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10336},{\"description\":\"坚持党的领导\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10336},{\"description\":\"全心全意为人民服务\",\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10336},{\"description\":\"解放和发展生产力\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10336}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:08:05\",\"id\":10336,\"params\":{},\"questionAnalysis\":\"全心全意为人民服务全心全意为人民服务\",\"questionAnswer\":\"C\",\"questionCourseId\":4,\"questionCourseName\":\"-\",\"questionDesc\":\"4.中国共产党的根本宗旨是( )\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:08:05', 195); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1087, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"富强民主文明和谐\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10337},{\"description\":\"自由平等公正法治\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10337},{\"description\":\"爱国敬业诚信友善\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10337},{\"description\":\"富强民主自由平等\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10337}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:09:01\",\"id\":10337,\"params\":{},\"questionAnalysis\":\"富强民主文明和谐富强民主文明和谐富强民主文明和谐富强民主文明和谐\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionCourseName\":\"-\",\"questionDesc\":\"社会主义核心价值观的国家层面价值目标是( )\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:09:01', 195); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1088, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"中共一大\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10338},{\"description\":\"遵义会议\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10338},{\"description\":\"瓦窑堡会议\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10338},{\"description\":\"洛川会议\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10338}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:09:42\",\"id\":10338,\"params\":{},\"questionAnalysis\":\"遵义会议遵义会议遵义会议遵义会议遵义会议遵义会议遵义会议遵义会议\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionCourseName\":\"-\",\"questionDesc\":\"党的历史上具有生死攸关转折点意义的会议是( )\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:09:42', 196); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1089, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"毛泽东思想\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10339},{\"description\":\"邓小平理论\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10339},{\"description\":\" “三个代表”重要思想\\\"\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10339},{\"description\":\"习近平新时代中国特色社会主义思想\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10339}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:10:46\",\"id\":10339,\"params\":{},\"questionAnalysis\":\"毛泽东思想毛泽东思想毛泽东思想毛泽东思想毛泽东思想\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionCourseName\":\"-\",\"questionDesc\":\"7.马克思主义中国化的第一次历史性飞跃是( )\",\"questionKnowledge\":\"没有的\",\"questionRank\":\"0.4\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:10:46', 222); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1090, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"马克思主义哲学\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10340},{\"description\":\"马克思主义政治经济学\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10340},{\"description\":\" 科学社会主义\",\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10340},{\"description\":\" 空想社会主义\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10340}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:11:50\",\"id\":10340,\"params\":{},\"questionAnalysis\":\"马克思主义的主要组成部马克思主义的主要组成部\",\"questionAnswer\":\"A,B,C\",\"questionCourseId\":4,\"questionCourseName\":\"-\",\"questionDesc\":\"马克思主义的主要组成部分包括( )\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"2\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:11:50', 222); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1091, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"实事求是\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10341},{\"description\":\"群众路线\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10341},{\"description\":\"独立自主\",\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10341},{\"description\":\"统一战线\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10341}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:12:37\",\"id\":10341,\"params\":{},\"questionAnalysis\":\"毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方\",\"questionAnswer\":\"A,B,C\",\"questionCourseId\":9,\"questionCourseName\":\"-\",\"questionDesc\":\"毛泽东思想活的灵魂的基本方面有( )\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"2\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:12:37', 194); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1092, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"坚持党对一切工作的领导\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10342},{\"description\":\" 坚持以人民为中心\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10342},{\"description\":\"坚持全面深化改革\",\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10342},{\"description\":\"坚持全面从严治党\",\"isOk\":1,\"option\":\"D\",\"params\":{},\"questionId\":10342}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:13:39\",\"id\":10342,\"params\":{},\"questionAnalysis\":\"习近平新时代中国特色社会主义思想习近平新时代中国特色社会主义思想习近平新时代中国特色社会主义思想习近平新时代中国特色社会主义思想习近平新时代中国特色社会主义思想\",\"questionAnswer\":\"A,B,C,D\",\"questionCourseId\":4,\"questionCourseName\":\"-\",\"questionDesc\":\"3.习近平新时代中国特色社会主义思想的“十四个坚持”包括( )\",\"questionRank\":\"0.4\",\"questionScore\":\"5\",\"questionType\":\"2\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:13:39', 222); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1093, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"伟大斗争\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大工程\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大事业\",\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大梦想\",\"isOk\":1,\"option\":\"D\",\"params\":{},\"questionId\":10343}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:14:31\",\"id\":10343,\"params\":{},\"questionAnalysis\":\"党的十九大提出的“四个伟大”是指党的十九大提出的“四个伟大”是指党的十九大提出的“四个伟大”是指\",\"questionAnswer\":\"A,B,C,D\",\"questionCourseId\":9,\"questionCourseName\":\"-\",\"questionDesc\":\"党的十九大提出的“四个伟大”是指\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"2\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:14:31', 194); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1094, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10344},{\"description\":\"错\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10344}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:15:30\",\"id\":10344,\"params\":{},\"questionAnalysis\":\"1.马克思主义是一成不变的真理。( )1.马克思主义是一成不变的真理。( )1.马克思主义是一成不变的真理。( )\",\"questionAnswer\":\"B\",\"questionCourseId\":9,\"questionCourseName\":\"-\",\"questionDesc\":\"1.马克思主义是一成不变的真理。( )\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"3\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:15:30', 195); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1095, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10345},{\"description\":\"错\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10345}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:16:13\",\"id\":10345,\"params\":{},\"questionAnalysis\":\"毛泽东思想就是毛泽东个人的思想。毛泽东思想就是毛泽东个人的思想。毛泽东思想就是毛泽东个人的思想。毛泽东思想就是毛泽东个人的思想。\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionCourseName\":\"-\",\"questionDesc\":\"毛泽东思想就是毛泽东个人的思想。\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"3\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:16:13', 196); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1096, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10346},{\"description\":\"错\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10346}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:17:02\",\"id\":10346,\"params\":{},\"questionAnalysis\":\"习近平新时代中国特色社会主义思想是当代中\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionCourseName\":\"-\",\"questionDesc\":\"习近平新时代中国特色社会主义思想是当代中国马克思主义、二十一世纪马克思主义\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:17:02', 195); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1097, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionCourseName\":\"-\",\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:18:13', 221); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1098, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10348},{\"description\":\"错\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10348}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:25:18\",\"id\":10348,\"params\":{},\"questionAnalysis\":\"社会主义核心价值观只需要践行个人层面的要求社会主义核心价值观只需要践行个人层面的要求社会主义核心价值观只需要践行个人层面的要求\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionCourseName\":\"-\",\"questionDesc\":\"社会主义核心价值观只需要践行个人层面的要求\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"3\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:25:18', 220); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1099, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10349},{\"description\":\"错\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10349}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:02\",\"id\":10349,\"params\":{},\"questionAnalysis\":\"遵义会议确立了毛泽东在党中央和红军中的领导地位遵义会议确立了毛泽东在党中央和红军中的领导地位遵义会议确立了毛泽东在党中央和红军中的领导地位\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionCourseName\":\"-\",\"questionDesc\":\"遵义会议确立了毛泽东在党中央和红军中的领导地位\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"3\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:26:02', 194); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1100, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":102,\"chapterType\":101,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":535,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":536,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":2,\"content\":\"\",\"id\":537,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":1,\"content\":\"\",\"id\":538,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":7,\"content\":\"\",\"id\":539,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":9,\"content\":\"\",\"id\":540,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":103,\"content\":\"\",\"id\":541,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764143538858,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":2,\\\"typeId\\\":10,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"1\\\",\\\"approva', '{\"msg\":\"批量处理失败: \\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n### The error may exist in URL [jar:file:/www/java/study-modules-teaching.jar!/BOOT-INF/lib/study-common-mapper-3.6.6.jar!/mapper/teaching/BaseClassSchMapper.xml]\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\n### The error occurred while setting parameters\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:26:30', 130); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1101, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionCourseName\":\"-\",\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:26:38', 193); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1102, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":99,\"chapterType\":101,\"content\":\"

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

\",\"id\":502,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":102,\"content\":\"

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

\",\"id\":503,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":2,\"content\":\"\",\"id\":504,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":1,\"content\":\"\",\"id\":505,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":7,\"content\":\"\",\"id\":506,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":9,\"content\":\"\",\"id\":507,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":103,\"content\":\"\",\"id\":508,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":10,\"content\":\"\",\"id\":509,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":5,\"content\":\"\",\"id\":510,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":8,\"content\":\"\",\"id\":511,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":104,\"content\":\"\",\"id\":512,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理失败: \\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n### The error may exist in URL [jar:file:/www/java/study-modules-teaching.jar!/BOOT-INF/lib/study-common-mapper-3.6.6.jar!/mapper/teaching/BaseClassSchMapper.xml]\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\n### The error occurred while setting parameters\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:26:49', 108); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1103, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10351},{\"description\":\"错\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10351}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:27:18\",\"id\":10351,\"params\":{},\"questionAnalysis\":\"道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionCourseName\":\"-\",\"questionDesc\":\"道德是靠国家强制力保证实施的\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:27:19', 194); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1104, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10352},{\"description\":\"错\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10352}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:28:00\",\"id\":10352,\"params\":{},\"questionAnalysis\":\"改革开放是中国特色社会主义的根本任务改革开放是中国特色社会主义的根本任务改革开放是中国特色社会主义的根本任务\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionCourseName\":\"-\",\"questionDesc\":\"改革开放是中国特色社会主义的根本任务\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"3\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:28:01', 194); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1105, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":45,\"chapterType\":101,\"content\":\"


\",\"id\":119,\"params\":{},\"schoolId\":1},{\"chapterId\":45,\"chapterType\":102,\"content\":\"


\",\"id\":120,\"params\":{},\"schoolId\":1},{\"chapterId\":45,\"chapterType\":2,\"content\":\"\",\"id\":121,\"params\":{},\"schoolId\":1},{\"chapterId\":45,\"chapterType\":1,\"content\":\"\",\"id\":122,\"params\":{},\"schoolId\":1},{\"chapterId\":45,\"chapterType\":7,\"content\":\"\",\"id\":123,\"params\":{},\"schoolId\":1},{\"chapterId\":45,\"chapterType\":9,\"content\":\"\",\"id\":124,\"params\":{},\"schoolId\":1},{\"chapterId\":45,\"chapterType\":103,\"content\":\"\",\"id\":125,\"params\":{},\"schoolId\":1},{\"chapterId\":45,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:53:26\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":59,\\\"name\\\":\\\"测试图书2222222222\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155244A028.png\\\",\\\"description\\\":\\\"

测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126155321A029.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155321A029.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764143602160,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":2,\\\"typeId\\\":10,\\\"stage\\\":2,\\\"tagIds\\\":\\\"3\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"图书\\\",\\\"referenceCount\\\":0,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\', '{\"msg\":\"批量处理失败: \\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n### The error may exist in URL [jar:file:/www/java/study-modules-teaching.jar!/BOOT-INF/lib/study-common-mapper-3.6.6.jar!/mapper/teaching/BaseClassSchMapper.xml]\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\n### The error occurred while setting parameters\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:30:09', 127); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1106, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":99,\"chapterType\":101,\"content\":\"

国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

\",\"id\":502,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":102,\"content\":\"

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

\",\"id\":503,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":2,\"content\":\"\",\"id\":504,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":1,\"content\":\"\",\"id\":505,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":7,\"content\":\"\",\"id\":506,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":9,\"content\":\"\",\"id\":507,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":103,\"content\":\"\",\"id\":508,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":10,\"content\":\"\",\"id\":509,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":5,\"content\":\"\",\"id\":510,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":8,\"content\":\"\",\"id\":511,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":104,\"content\":\"\",\"id\":512,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理失败: \\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n### The error may exist in URL [jar:file:/www/java/study-modules-teaching.jar!/BOOT-INF/lib/study-common-mapper-3.6.6.jar!/mapper/teaching/BaseClassSchMapper.xml]\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\n### The error occurred while setting parameters\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:31:00', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1107, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":102,\"chapterType\":101,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":535,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":536,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":2,\"content\":\"\",\"id\":537,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":1,\"content\":\"\",\"id\":538,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":7,\"content\":\"\",\"id\":539,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":9,\"content\":\"\",\"id\":540,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":103,\"content\":\"\",\"id\":541,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":10,\"content\":\"\",\"id\":542,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":5,\"content\":\"\",\"id\":543,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":8,\"content\":\"\",\"id\":544,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":104,\"content\":\"\",\"id\":545,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理失败: \\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n### The error may exist in URL [jar:file:/www/java/study-modules-teaching.jar!/BOOT-INF/lib/study-common-mapper-3.6.6.jar!/mapper/teaching/BaseClassSchMapper.xml]\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\n### The error occurred while setting parameters\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:34:02', 127); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1108, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '0:0:0:0:0:0:0:1%0', '', '{\"courseId\":24,\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:34:37\",\"id\":110,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"1.4 5652646手动阀手动阀\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":24,\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:34:37\",\"id\":110,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"1.4 5652646手动阀手动阀\"}}', 0, NULL, '2025-11-26 16:34:37', 144); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1109, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":99,\"chapterType\":101,\"content\":\"

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

\",\"id\":502,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":102,\"content\":\"

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

\",\"id\":503,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":2,\"content\":\"\",\"id\":504,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":1,\"content\":\"\",\"id\":505,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":7,\"content\":\"\",\"id\":506,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":9,\"content\":\"\",\"id\":507,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":103,\"content\":\"\",\"id\":508,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":10,\"content\":\"\",\"id\":509,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":5,\"content\":\"\",\"id\":510,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":8,\"content\":\"\",\"id\":511,\"params\":{},\"schoolId\":1},{\"chapterId\":99,\"chapterType\":104,\"content\":\"\",\"id\":512,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理失败: \\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n### The error may exist in URL [jar:file:/www/java/study-modules-teaching.jar!/BOOT-INF/lib/study-common-mapper-3.6.6.jar!/mapper/teaching/BaseClassSchMapper.xml]\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\n### The error occurred while setting parameters\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:34:46', 126); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1110, 1, '章节信息', 3, 'com.study.teaching.controller.BaseChapterController.remove()', 'DELETE', 1, 'admin', NULL, '/chapter/110', '127.0.0.1', '', '[110]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:35:14', 52); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1111, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '0:0:0:0:0:0:0:1%0', '', '{\"courseId\":24,\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:35:26\",\"id\":111,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":101,\"schoolId\":1,\"subChapters\":[],\"title\":\"1111\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":24,\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:35:26\",\"id\":111,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":2,\"params\":{},\"pid\":101,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"1111\"}}', 0, NULL, '2025-11-26 16:35:26', 126); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1112, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":101,\"content\":\"


\",\"id\":108,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":102,\"content\":\"\",\"id\":109,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":110,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:32:35\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-26 15:38:34\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":47,\\\"name\\\":\\\"测试课件111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\\\",\\\"viewCount\\\":1,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142351913,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":2,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"createTimeIntervalNum\\\":null,\\\"createTimeIntervalUnit\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":0,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":888915,\\\"size\\\":888915,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"测试课件111111\\\"}]\",\"id\":111,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":7,\"content\":\"\",\"id\":112,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":9,\"content\":\"\",\"id\":113,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapte', '{\"msg\":\"批量处理失败: \\r\\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\r\\n### The error may exist in file [D:\\\\ws\\\\school-mgr\\\\StudyCloud\\\\study-common\\\\study-common-mapper\\\\target\\\\classes\\\\mapper\\\\teaching\\\\BaseClassSchMapper.xml]\\r\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\r\\n### The error occurred while setting parameters\\r\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, bc.cover_url, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\r\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:37:38', 412); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1113, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":101,\"content\":\"


\",\"id\":108,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":102,\"content\":\"\",\"id\":109,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":110,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:33:39\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":48,\\\"name\\\":\\\"测试课件222222\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":19353929,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142415469,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":3,\\\"typeId\\\":1,\\\"stage\\\":3,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"2\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"createTimeIntervalNum\\\":null,\\\"createTimeIntervalUnit\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":0,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":19353929,\\\"size\\\":19353929,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"测试课件222222\\\"}]\",\"id\":111,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":7,\"content\":\"\",\"id\":112,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":9,\"content\":\"\",\"id\":113,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType', '{\"msg\":\"批量处理失败: \\r\\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\r\\n### The error may exist in file [D:\\\\ws\\\\school-mgr\\\\StudyCloud\\\\study-common\\\\study-common-mapper\\\\target\\\\classes\\\\mapper\\\\teaching\\\\BaseClassSchMapper.xml]\\r\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\r\\n### The error occurred while setting parameters\\r\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, bc.cover_url, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\r\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:38:09', 158); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1114, 1, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, 'admin', NULL, '/course', '0:0:0:0:0:0:0:1%0', '', '{\"courseDesc\":\"

      十分士大夫撒旦发射点发射点士大夫士大夫士大夫撒旦士大夫撒旦发射点发射点发生手动阀手动阀

士大夫士大夫胜多负少

\",\"courseState\":1,\"courseType\":\"1\",\"coverUrl\":\"/statics/2025/11/26/生成图片 (3)_20251126163700A030.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:40:20\",\"id\":26,\"isUse\":1,\"label\":\"新中国成立\",\"name\":\"我的测试课程\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"会议预约解决方案(1)_20251126163852A031.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/26/会议预约解决方案(1)_20251126163852A031.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":47392907,\\\"metadata\\\":null,\\\"uid\\\":1764146334051,\\\"status\\\":\\\"success\\\"},{\\\"name\\\":\\\"格式工厂 屏幕录像20251010_174654_20251126163922A032.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/格式工厂 屏幕录像20251010_174654_20251126163922A032.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":2976273,\\\"metadata\\\":null,\\\"uid\\\":1764146363237,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":2,\"schoolId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:40:20', 129); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1115, 1, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, 'admin', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

      十分士大夫撒旦发射点发射点士大夫士大夫士大夫撒旦士大夫撒旦发射点发射点发生手动阀手动阀

士大夫士大夫胜多负少

\",\"courseState\":1,\"courseType\":\"1\",\"coverUrl\":\"/statics/2025/11/26/生成图片 (3)_20251126163700A030.png\",\"createBy\":\"1\",\"id\":26,\"isUse\":1,\"label\":\"新中国成立,党的二十大\",\"name\":\"我的测试课程\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"会议预约解决方案(1)_20251126163852A031.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/26/会议预约解决方案(1)_20251126163852A031.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":47392907,\\\"metadata\\\":null,\\\"uid\\\":1764146334051,\\\"status\\\":\\\"success\\\"},{\\\"name\\\":\\\"格式工厂 屏幕录像20251010_174654_20251126163922A032.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/格式工厂 屏幕录像20251010_174654_20251126163922A032.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":2976273,\\\"metadata\\\":null,\\\"uid\\\":1764146363237,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":2,\"schoolId\":1,\"updateTime\":\"2025-11-26 16:43:37\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:43:38', 127); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1116, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":26,\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:44:36\",\"id\":112,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"我是一级目录\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":26,\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:44:37\",\"id\":112,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"我是一级目录\"}}', 0, NULL, '2025-11-26 16:44:36', 128); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1117, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":26,\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:44:48\",\"id\":113,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"我是一级目录2\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":26,\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:44:49\",\"id\":113,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"我是一级目录2\"}}', 0, NULL, '2025-11-26 16:44:48', 80); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1118, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":112,\"chapterType\":101,\"content\":\"


\",\"createTime\":\"2025-11-26 16:44:59\",\"id\":590,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":102,\"content\":\"\",\"createTime\":\"2025-11-26 16:44:59\",\"id\":591,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-26 16:45:00\",\"id\":592,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-26 16:45:00\",\"id\":593,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-26 16:45:00\",\"id\":594,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-26 16:45:00\",\"id\":595,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-26 16:45:00\",\"id\":596,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-26 16:45:00\",\"id\":597,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-26 16:45:00\",\"id\":598,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-26 16:45:00\",\"id\":599,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-26 16:45:01\",\"id\":600,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-26 16:45:01', 1433); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1119, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":112,\"chapterType\":101,\"content\":\"


\",\"id\":590,\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":102,\"content\":\"\",\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":2,\"content\":\"\",\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":1,\"content\":\"\",\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":7,\"content\":\"\",\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":9,\"content\":\"\",\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":103,\"content\":\"\",\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":10,\"content\":\"\",\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":5,\"content\":\"\",\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":8,\"content\":\"\",\"params\":{},\"schoolId\":1},{\"chapterId\":112,\"chapterType\":104,\"content\":\"\",\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理失败: \\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n### The error may exist in URL [jar:file:/www/java/study-modules-teaching.jar!/BOOT-INF/lib/study-common-mapper-3.6.6.jar!/mapper/teaching/BaseClassSchMapper.xml]\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\n### The error occurred while setting parameters\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:45:14', 168); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1120, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":101,\"content\":\"


\",\"id\":108,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":102,\"content\":\"\",\"id\":109,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":110,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:33:39\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":48,\\\"name\\\":\\\"测试课件222222\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":19353929,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142415469,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":3,\\\"typeId\\\":1,\\\"stage\\\":3,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"2\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"createTimeIntervalNum\\\":null,\\\"createTimeIntervalUnit\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":0,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":19353929,\\\"size\\\":19353929,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"测试课件222222\\\"}]\",\"id\":111,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":7,\"content\":\"\",\"id\":112,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":9,\"content\":\"\",\"id\":113,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType', '{\"msg\":\"批量处理失败: \\r\\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\r\\n### The error may exist in file [D:\\\\ws\\\\school-mgr\\\\StudyCloud\\\\study-common\\\\study-common-mapper\\\\target\\\\classes\\\\mapper\\\\teaching\\\\BaseClassSchMapper.xml]\\r\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\r\\n### The error occurred while setting parameters\\r\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, bc.cover_url, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\r\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:49:17', 986); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1121, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":101,\"content\":\"


\",\"id\":108,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":102,\"content\":\"\",\"id\":109,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":110,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:33:39\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":48,\\\"name\\\":\\\"测试课件222222\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":19353929,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142415469,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":3,\\\"typeId\\\":1,\\\"stage\\\":3,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"2\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"createTimeIntervalNum\\\":null,\\\"createTimeIntervalUnit\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":0,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":19353929,\\\"size\\\":19353929,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"测试课件222222\\\"}]\",\"id\":111,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":7,\"content\":\"\",\"id\":112,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType\":9,\"content\":\"\",\"id\":113,\"params\":{},\"schoolId\":1},{\"chapterId\":44,\"chapterType', '{\"msg\":\"批量处理失败: \\r\\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\r\\n### The error may exist in file [D:\\\\ws\\\\school-mgr\\\\StudyCloud\\\\study-common\\\\study-common-mapper\\\\target\\\\classes\\\\mapper\\\\teaching\\\\BaseClassSchMapper.xml]\\r\\n### The error may involve com.study.teaching.mapper.BaseClassSchMapper.selectClassScheduleByChapterId-Inline\\r\\n### The error occurred while setting parameters\\r\\n### SQL: SELECT bcs.*, bc.ref_id, bc.label as course_tag, bc.view_count, bc.cover_url, su.nick_name as create_by_name, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_del = 0) as total_chapters, (SELECT COUNT(1) FROM base_chapter WHERE course_id = bcs.course_id AND is_pass = 1 AND is_del = 0) as taught_chapters FROM base_class_sch bcs INNER JOIN base_chapter bc ON bcs.course_id = bc.course_id LEFT JOIN base_course bco ON bcs.course_id = bco.id LEFT JOIN sys_user su ON bcs.create_by = su.user_id WHERE bc.id = ? AND bcs.is_del = 0\\r\\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'bc.label\' in \'field list\'\",\"code\":500}', 0, NULL, '2025-11-26 16:49:29', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1122, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, 'admin', NULL, '/messageRel/read/39', '127.0.0.1', '', '39', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:51:19', 115); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1123, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, 'admin', NULL, '/messageRel/read/56', '0:0:0:0:0:0:0:1%0', '', '56', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:51:22', 77); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1124, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, 'admin', NULL, '/messageRel/read/64', '127.0.0.1', '', '64', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:51:29', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1125, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, 'admin', NULL, '/messageRel/read/127', '0:0:0:0:0:0:0:1%0', '', '127', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 16:51:34', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1126, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":101,\"content\":\"


\",\"id\":108,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 16:55:48\"},{\"chapterId\":44,\"chapterType\":102,\"content\":\"\",\"id\":109,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 16:55:48\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":110,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 16:55:48\"},{\"chapterId\":44,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:33:39\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":48,\\\"name\\\":\\\"测试课件222222\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":19353929,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142415469,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":3,\\\"typeId\\\":1,\\\"stage\\\":3,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"2\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"createTimeIntervalNum\\\":null,\\\"createTimeIntervalUnit\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":0,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":19353929,\\\"size\\\":19353929,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"测试课件222222\\\"}]\",\"id\":111,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 16:55:48\"},{\"chapterId\":44,\"chapterType\":7,\"content\":\"\",\"id', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-26 16:55:51', 1916); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1127, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":2,\"params\":{},\"resourceId\":16},{\"chapterId\":44,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":44,\"chapterType\":5,\"params\":{},\"resourceId\":29},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10328},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10327},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10318},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10326},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10325},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10324}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-26 16:55:51', 147); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1128, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":91,\"chapterType\":101,\"content\":\"

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

\",\"id\":359,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 17:04:15\"},{\"chapterId\":91,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":360,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 17:04:15\"},{\"chapterId\":91,\"chapterType\":2,\"content\":\"\",\"id\":361,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 17:04:15\"},{\"chapterId\":91,\"chapterType\":1,\"content\":\"\",\"id\":362,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 17:04:15\"},{\"chapterId\":91,\"chapterType\":7,\"content\":\"\",\"id\":363,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 17:04:15\"},{\"chapterId\":91,\"chapterType\":9,\"content\":\"\",\"id\":364,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 17:04:16\"},{\"chapterId\":91,\"chapterType\":103,\"co', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-26 17:04:17', 1597); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1129, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"教学设计、课堂管理、教学评估一体化平台\",\"appIconPath\":\"/statics/2025/11/07/ScreenShot_2025-11-07_190220_618 拷贝_20251107190507A010.png\",\"appId\":2,\"appName\":\"思政教学\",\"appPath\":\"/teachingSys\",\"isDel\":0,\"isRequired\":0,\"isUse\":1,\"params\":{},\"remark\":\"2\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-26 17:07:17\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 17:07:17', 77); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1130, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理系统\",\"updateTime\":\"2025-11-26 17:22:38\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识111\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 17:22:38', 103); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1131, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理系统\",\"updateTime\":\"2025-11-26 17:25:52\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识111\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 17:25:52', 104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1132, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":91,\"chapterType\":101,\"content\":\"

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

\",\"id\":359,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 17:32:44\"},{\"chapterId\":91,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":360,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 17:32:44\"},{\"chapterId\":91,\"chapterType\":2,\"content\":\"\",\"id\":361,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 17:32:44\"},{\"chapterId\":91,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:32:35\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-26 15:38:34\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":47,\\\"name\\\":\\\"测试课件111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"descri', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-26 17:32:46', 1622); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1133, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":91,\"chapterType\":1,\"params\":{},\"resourceId\":47}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-26 17:32:46', 104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1134, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126175139A033.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 17:52:15\",\"description\":\"

测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/26/思想道德与法治-第一章-第一节_20251126175211A034/index.html\\\",\\\"originalName\\\":\\\"思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1764150732088,\\\"status\\\":\\\"success\\\"}]\",\"id\":60,\"name\":\"测试展馆111111111111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":3,\"state\":1,\"subjectId\":2,\"tagIds\":\"2\",\"typeId\":7,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126175139A033.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 17:52:15\",\"description\":\"

测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/26/思想道德与法治-第一章-第一节_20251126175211A034/index.html\\\",\\\"originalName\\\":\\\"思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1764150732088,\\\"status\\\":\\\"success\\\"}]\",\"id\":60,\"name\":\"测试展馆111111111111\",\"params\":{},\"schId\":1,\"source\":\"1\",\"stage\":3,\"state\":1,\"subjectId\":2,\"tagIds\":\"2\",\"typeId\":7,\"viewCount\":0}}', 0, NULL, '2025-11-26 17:52:16', 160); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1135, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_175328_956_20251126175341A037.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 17:53:46\",\"description\":\"

测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/26/思想道德与法治-第一章-第二节_20251126175306A035/index.html\\\",\\\"originalName\\\":\\\"思想道德与法治-第一章-第二节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1764150787039,\\\"status\\\":\\\"success\\\"}]\",\"id\":61,\"name\":\"测试展馆2222222222\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":3,\"state\":1,\"subjectId\":2,\"tagIds\":\"3\",\"typeId\":7,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_175328_956_20251126175341A037.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 17:53:46\",\"description\":\"

测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222测试展馆2222222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/26/思想道德与法治-第一章-第二节_20251126175306A035/index.html\\\",\\\"originalName\\\":\\\"思想道德与法治-第一章-第二节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1764150787039,\\\"status\\\":\\\"success\\\"}]\",\"id\":61,\"name\":\"测试展馆2222222222\",\"params\":{},\"schId\":1,\"source\":\"1\",\"stage\":3,\"state\":1,\"subjectId\":2,\"tagIds\":\"3\",\"typeId\":7,\"viewCount\":0}}', 0, NULL, '2025-11-26 17:53:46', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1136, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":112,\"chapterType\":101,\"content\":\"


\",\"id\":590,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:00:56\"},{\"chapterId\":112,\"chapterType\":102,\"content\":\"\",\"id\":591,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:00:56\"},{\"chapterId\":112,\"chapterType\":2,\"content\":\"\",\"id\":592,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:00:56\"},{\"chapterId\":112,\"chapterType\":1,\"content\":\"\",\"id\":593,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:00:56\"},{\"chapterId\":112,\"chapterType\":7,\"content\":\"\",\"id\":594,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:00:57\"},{\"chapterId\":112,\"chapterType\":9,\"content\":\"\",\"id\":595,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:00:57\"},{\"chapterId\":112,\"chapterType\":103,\"content\":\"\",\"id\":596,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:00:57\"},{\"chapterId\":112,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764143538858,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":2,\\\"typeId\\\":10,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"1\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"t', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-26 22:00:58', 1583); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1137, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":112,\"chapterType\":10,\"params\":{},\"resourceId\":58}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-26 22:00:58', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1138, 1, '章节信息', 5, 'com.study.teaching.controller.BaseChapterController.export()', 'POST', 1, 'admin', NULL, '/chapter/export', '0:0:0:0:0:0:0:1%0', '', '{\"courseId\":\"5\"}', NULL, 0, NULL, '2025-11-26 22:01:54', 905); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1139, 1, '章节信息', 6, 'com.study.teaching.controller.BaseChapterController.importData()', 'POST', 1, 'admin', NULL, '/chapter/importData', '127.0.0.1', '', '{\"schoolId\":\"1\",\"courseId\":\"5\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 22:03:17', 351); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1140, 1, '章节信息', 6, 'com.study.teaching.controller.BaseChapterController.importData()', 'POST', 1, 'admin', NULL, '/chapter/importData', '127.0.0.1', '', '{\"schoolId\":\"1\",\"courseId\":\"5\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 22:04:18', 250); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1141, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":98,\"chapterType\":101,\"content\":\"

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

\",\"id\":436,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:42\"},{\"chapterId\":98,\"chapterType\":102,\"content\":\"

中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh中国精神00010-hhhhhhhhhh

\",\"id\":437,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:42\"},{\"chapterId\":98,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"系统内置\\\"}\",\"id\":438,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:43\"},{\"chapterId\":98,\"chapterType\":1,\"content\":\"\",\"id\":439,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:43\"},{\"chapterId\":98,\"chapterType\":7,\"content\":\"\",\"id\":440,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:43\"},{\"chapterId\":98,\"chapterType\":9,\"content\":\"\",\"id\":441,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:43\"},{\"chapterId\":98,\"chapterType\":103,\"content\":\"\",\"id\":442,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:43\"},{\"chapterId\":98,\"chapterType\":10,\"content\":\"\",\"id\":443,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:43\"},{\"chapterId\":98,\"chapterType\":5,\"content\":\"\",\"id\":444,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:43\"},{\"chapterId\":98,\"chapterType\":8,\"content\":\"\",\"id\":445,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:43\"},{\"chapterId\":98,\"chapterType\":104,\"content\":\"\",\"id\":446,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 22:19:44\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-26 22:19:44', 1438); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1142, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":98,\"chapterType\":2,\"params\":{},\"resourceId\":45}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-26 22:19:44', 78); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1143, 1, '章节信息', 6, 'com.study.teaching.controller.BaseChapterController.importData()', 'POST', 1, 'admin', NULL, '/chapter/importData', '0:0:0:0:0:0:0:1%0', '', '{\"schoolId\":\"1\",\"courseId\":\"9\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 22:36:56', 378); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1144, 1, '章节信息', 6, 'com.study.teaching.controller.BaseChapterController.importData()', 'POST', 1, 'admin', NULL, '/chapter/importData', '0:0:0:0:0:0:0:1%0', '', '{\"schoolId\":\"1\",\"courseId\":\"9\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 22:37:58', 349); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1145, 1, '章节信息', 6, 'com.study.teaching.controller.BaseChapterController.importData()', 'POST', 1, 'admin', NULL, '/chapter/importData', '127.0.0.1', '', '{\"schoolId\":\"1\",\"courseId\":\"5\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-26 22:41:46', 317); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1146, 1, '资源审核', 5, 'com.study.resource.controller.BaseResourceController.exportStatistics()', 'POST', 1, 'admin', NULL, '/resource/exportStatistics', '0:0:0:0:0:0:0:1%0', '', '{\"schId\":\"1\",\"state\":\"1\",\"approvalStateList\":\"2\"}', NULL, 0, NULL, '2025-11-26 23:05:09', 859); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1147, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":91,\"chapterType\":101,\"content\":\"

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

\",\"id\":359,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 23:58:21\"},{\"chapterId\":91,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":360,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 23:58:21\"},{\"chapterId\":91,\"chapterType\":2,\"content\":\"\",\"id\":361,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-26 23:58:21\"},{\"chapterId\":91,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:32:35\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-26 15:38:34\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":47,\\\"name\\\":\\\"测试课件111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"1\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"descripti', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-26 23:58:23', 1896); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1148, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":91,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":91,\"chapterType\":104,\"params\":{},\"questionId\":10351},{\"chapterId\":91,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":91,\"chapterType\":104,\"params\":{},\"questionId\":10347}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3}', 0, NULL, '2025-11-26 23:58:23', 104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1149, 17, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '13488103555', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿工人阶级的最终归宿

\",\"courseState\":1,\"courseType\":\"1\",\"coverUrl\":\"/statics/2025/11/27/微信图片_20241217162528_20251127001345A039.png\",\"createBy\":\"123\",\"createTime\":\"2025-11-27 00:15:19\",\"id\":27,\"isUse\":1,\"label\":\"士大夫 所发生的\",\"name\":\"工人阶级的最终归宿\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"数字孪生+工程建设安全管理系统_20251127001514A040.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/27/数字孪生+工程建设安全管理系统_20251127001514A040.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":22526704,\\\"metadata\\\":null,\\\"uid\\\":1764173715023,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":1,\"schoolId\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 00:15:20', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1150, 17, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '13488103555', NULL, '/course/batchReview', '127.0.0.1', '', '{\"courseIds\":[27],\"params\":{},\"reviewDesc\":\"阿松大\",\"reviewState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 00:16:27', 148); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1151, 17, '章节信息', 6, 'com.study.teaching.controller.BaseChapterController.importData()', 'POST', 1, '13488103555', NULL, '/chapter/importData', '127.0.0.1', '', '{\"schoolId\":\"17\",\"courseId\":\"27\",\"userId\":\"123\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 00:16:54', 313); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1152, 17, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, '13488103555', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":135,\"chapterType\":101,\"content\":\"

阿萨大厦萨达萨达

\",\"createTime\":\"2025-11-27 00:17:11\",\"id\":601,\"params\":{},\"schoolId\":17},{\"chapterId\":135,\"chapterType\":102,\"content\":\"\",\"createTime\":\"2025-11-27 00:17:11\",\"id\":602,\"params\":{},\"schoolId\":17},{\"chapterId\":135,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-27 00:17:11\",\"id\":603,\"params\":{},\"schoolId\":17},{\"chapterId\":135,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-27 00:17:11\",\"id\":604,\"params\":{},\"schoolId\":17},{\"chapterId\":135,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-27 00:17:12\",\"id\":605,\"params\":{},\"schoolId\":17},{\"chapterId\":135,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-27 00:17:12\",\"id\":606,\"params\":{},\"schoolId\":17},{\"chapterId\":135,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-27 00:17:12\",\"id\":607,\"params\":{},\"schoolId\":17},{\"chapterId\":135,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-27 00:17:12\",\"id\":608,\"params\":{},\"schoolId\":17},{\"chapterId\":135,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-27 00:17:12\",\"id\":609,\"params\":{},\"schoolId\":17},{\"chapterId\":135,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-27 00:17:12\",\"id\":610,\"params\":{},\"schoolId\":17},{\"chapterId\":135,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-27 00:17:12\",\"id\":611,\"params\":{},\"schoolId\":17}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-27 00:17:12', 1215); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1153, 17, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, '13488103555', NULL, '/course', '127.0.0.1', '', '{\"id\":27,\"params\":{},\"reviewState\":2,\"updateTime\":\"2025-11-27 00:17:26\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 00:17:26', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1154, 17, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '13488103555', NULL, '/course', '0:0:0:0:0:0:0:1%0', '', '{\"courseDesc\":\"

工人的最终归宿2工人的最终归宿2工人的最终归宿2

\",\"courseState\":1,\"courseType\":\"\",\"coverUrl\":\"/statics/2025/11/27/微信图片_20241217162528_20251127001815A041.png\",\"createBy\":\"123\",\"createTime\":\"2025-11-27 00:18:26\",\"id\":28,\"isUse\":1,\"label\":\"\",\"name\":\"工人的最终归宿2\",\"params\":{},\"resource\":\"[]\",\"reviewState\":1,\"schoolId\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 00:18:26', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1155, 17, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '13488103555', NULL, '/course/batchReview', '0:0:0:0:0:0:0:1%0', '', '{\"courseIds\":[28],\"params\":{},\"reviewDesc\":\"试试飒\",\"reviewState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 00:18:44', 143); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1156, 17, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, '13488103555', NULL, '/course', '127.0.0.1', '', '{\"id\":28,\"params\":{},\"reviewState\":2,\"updateTime\":\"2025-11-27 00:18:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 00:18:55', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1157, 17, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '13488103555', NULL, '/course', '0:0:0:0:0:0:0:1%0', '', '{\"courseDesc\":\"

工人的最终归宿3工人的最终归宿3工人的最终归宿3工人的最终归宿3工人的最终归宿3

\",\"courseState\":1,\"courseType\":\"\",\"coverUrl\":\"/statics/2025/11/27/微信图片_20241217162528_20251127001921A042.png\",\"createBy\":\"123\",\"createTime\":\"2025-11-27 00:19:31\",\"id\":29,\"isUse\":1,\"label\":\"\",\"name\":\"工人的最终归宿3\",\"params\":{},\"resource\":\"[]\",\"reviewState\":4,\"schoolId\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 00:19:31', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1158, 17, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '13488103555', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

工人的最终归宿3工人的最终归宿3工人的最终归宿3工人的最终归宿3工人的最终归宿3

\",\"courseState\":1,\"courseType\":\"\",\"coverUrl\":\"/statics/2025/11/27/微信图片_20241217162528_20251127001921A042.png\",\"createBy\":\"123\",\"createTime\":\"2025-11-27 00:19:36\",\"id\":30,\"isUse\":1,\"label\":\"\",\"name\":\"工人的最终归宿3\",\"params\":{},\"resource\":\"[]\",\"reviewState\":4,\"schoolId\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 00:19:36', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1159, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":112,\"chapterType\":10,\"params\":{},\"resourceId\":58}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-27 09:19:23', 35); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1160, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":112,\"chapterType\":101,\"content\":\"

111

\",\"id\":590,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:19:21\"},{\"chapterId\":112,\"chapterType\":102,\"content\":\"\",\"id\":591,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:19:21\"},{\"chapterId\":112,\"chapterType\":2,\"content\":\"\",\"id\":592,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:19:21\"},{\"chapterId\":112,\"chapterType\":1,\"content\":\"\",\"id\":593,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:19:21\"},{\"chapterId\":112,\"chapterType\":7,\"content\":\"\",\"id\":594,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:19:22\"},{\"chapterId\":112,\"chapterType\":9,\"content\":\"\",\"id\":595,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:19:22\"},{\"chapterId\":112,\"chapterType\":103,\"content\":\"[{\\\"url\\\":\\\"http://localhost/#/chapter-list?id=26\\\",\\\"title\\\":\\\"大学思政教学平台\\\",\\\"description\\\":\\\"大学思政教学平台\\\",\\\"addTime\\\":\\\"2025/11/27 09:19:16\\\"}]\",\"id\":596,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:19:22\"},{\"chapterId\":112,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"1\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764143538858,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":2,\\\"typeId\\\":10,\\\"stage\\\":1,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"1\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-27 09:19:23', 1599); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1161, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":112,\"chapterType\":101,\"content\":\"

111

\",\"id\":590,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:22:46\"},{\"chapterId\":112,\"chapterType\":102,\"content\":\"\",\"id\":591,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:22:46\"},{\"chapterId\":112,\"chapterType\":2,\"content\":\"\",\"id\":592,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:22:46\"},{\"chapterId\":112,\"chapterType\":1,\"content\":\"\",\"id\":593,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:22:47\"},{\"chapterId\":112,\"chapterType\":7,\"content\":\"\",\"id\":594,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:22:47\"},{\"chapterId\":112,\"chapterType\":9,\"content\":\"\",\"id\":595,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:22:47\"},{\"chapterId\":112,\"chapterType\":103,\"content\":\"[{\\\"url\\\":\\\"http://localhost/#/chapter-list?id=26\\\",\\\"title\\\":\\\"大学思政教学平台\\\",\\\"description\\\":\\\"大学思政教学平台\\\",\\\"addTime\\\":\\\"2025/11/27 09:19:16\\\"},{\\\"url\\\":\\\"http://81.68.239.182/#/chapter-list?id=26\\\",\\\"title\\\":\\\"大学思政教学平台\\\",\\\"description\\\":\\\"大学思政教学平台\\\",\\\"addTime\\\":\\\"2025/11/27 09:22:40\\\"}]\",\"id\":596,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:22:47\"},{\"chapterId\":112,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"1\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764143538858,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-27 09:22:48', 1951); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1162, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":112,\"chapterType\":10,\"params\":{},\"resourceId\":58}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-27 09:22:48', 36); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1163, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":112,\"chapterType\":101,\"content\":\"

111

\",\"id\":590,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:32:06\"},{\"chapterId\":112,\"chapterType\":102,\"content\":\"\",\"id\":591,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:32:06\"},{\"chapterId\":112,\"chapterType\":2,\"content\":\"\",\"id\":592,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:32:06\"},{\"chapterId\":112,\"chapterType\":1,\"content\":\"\",\"id\":593,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:32:06\"},{\"chapterId\":112,\"chapterType\":7,\"content\":\"\",\"id\":594,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:32:06\"},{\"chapterId\":112,\"chapterType\":9,\"content\":\"\",\"id\":595,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:32:07\"},{\"chapterId\":112,\"chapterType\":103,\"content\":\"[{\\\"url\\\":\\\"http://localhost/#/chapter-list?id=26\\\",\\\"title\\\":\\\"大学思政教学平台\\\",\\\"description\\\":\\\"大学思政教学平台\\\",\\\"addTime\\\":\\\"2025/11/27 09:19:16\\\"},{\\\"url\\\":\\\"http://81.68.239.182/#/chapter-list?id=26\\\",\\\"title\\\":\\\"大学思政教学平台\\\",\\\"description\\\":\\\"大学思政教学平台\\\",\\\"addTime\\\":\\\"2025/11/27 09:22:40\\\"}]\",\"id\":596,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:32:07\"},{\"chapterId\":112,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"1\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764143538858,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-27 09:32:08', 1984); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1164, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":112,\"chapterType\":10,\"params\":{},\"resourceId\":58}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-27 09:32:08', 36); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1165, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":112,\"chapterType\":101,\"content\":\"

111

\",\"id\":590,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:49:34\"},{\"chapterId\":112,\"chapterType\":102,\"content\":\"

2222

\",\"id\":591,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:49:34\"},{\"chapterId\":112,\"chapterType\":2,\"content\":\"\",\"id\":592,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:49:34\"},{\"chapterId\":112,\"chapterType\":1,\"content\":\"\",\"id\":593,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:49:34\"},{\"chapterId\":112,\"chapterType\":7,\"content\":\"\",\"id\":594,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:49:34\"},{\"chapterId\":112,\"chapterType\":9,\"content\":\"\",\"id\":595,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:49:34\"},{\"chapterId\":112,\"chapterType\":103,\"content\":\"[{\\\"url\\\":\\\"http://localhost/#/chapter-list?id=26\\\",\\\"title\\\":\\\"大学思政教学平台\\\",\\\"description\\\":\\\"大学思政教学平台\\\",\\\"addTime\\\":\\\"2025/11/27 09:19:16\\\"},{\\\"url\\\":\\\"http://81.68.239.182/#/chapter-list?id=26\\\",\\\"title\\\":\\\"大学思政教学平台\\\",\\\"description\\\":\\\"大学思政教学平台\\\",\\\"addTime\\\":\\\"2025/11/27 09:22:40\\\"}]\",\"id\":596,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:49:35\"},{\"chapterId\":112,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"1\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764143538858,\\\\\\\"status\\\\\\\":\\\\\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-27 09:49:35', 1582); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1166, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":112,\"chapterType\":10,\"params\":{},\"resourceId\":58}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-27 09:49:35', 27); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1167, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":112,\"chapterType\":101,\"content\":\"

1115555

\",\"id\":590,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:51:16\"},{\"chapterId\":112,\"chapterType\":102,\"content\":\"

2222444

\",\"id\":591,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:51:16\"},{\"chapterId\":112,\"chapterType\":2,\"content\":\"\",\"id\":592,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:51:16\"},{\"chapterId\":112,\"chapterType\":1,\"content\":\"\",\"id\":593,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:51:16\"},{\"chapterId\":112,\"chapterType\":7,\"content\":\"\",\"id\":594,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:51:17\"},{\"chapterId\":112,\"chapterType\":9,\"content\":\"\",\"id\":595,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:51:17\"},{\"chapterId\":112,\"chapterType\":103,\"content\":\"[{\\\"url\\\":\\\"http://localhost/#/chapter-list?id=26\\\",\\\"title\\\":\\\"大学思政教学平台\\\",\\\"description\\\":\\\"大学思政教学平台\\\",\\\"addTime\\\":\\\"2025/11/27 09:19:16\\\"},{\\\"url\\\":\\\"http://81.68.239.182/#/chapter-list?id=26\\\",\\\"title\\\":\\\"大学思政教学平台\\\",\\\"description\\\":\\\"大学思政教学平台\\\",\\\"addTime\\\":\\\"2025/11/27 09:22:40\\\"}]\",\"id\":596,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 09:51:17\"},{\"chapterId\":112,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"1\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764143538858,\\\\\\\"status\\\\', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-27 09:51:18', 1537); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1168, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":112,\"chapterType\":10,\"params\":{},\"resourceId\":58}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-27 09:51:18', 29); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1169, 17, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, '13488103555', NULL, '/course', '127.0.0.1', '', '{\"id\":29,\"params\":{},\"reviewState\":2,\"updateTime\":\"2025-11-27 09:59:04\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 09:59:04', 68); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1170, 2, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":100,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"1\",\"createTime\":\"2025-11-27 10:02:38\",\"description\":\"

12

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":62,\"name\":\"1111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":6,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":100,\"authorName\":\"超级管理员\",\"categoryId\":1,\"createBy\":\"1\",\"createTime\":\"2025-11-27 10:02:38\",\"description\":\"

12

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":62,\"name\":\"1111\",\"params\":{},\"schId\":2,\"source\":\"3\",\"sourceUrl\":\"http://www.baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"tagIds\":\"1\",\"typeId\":6,\"viewCount\":0}}', 0, NULL, '2025-11-27 10:02:40', 689); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1171, 2, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, 'admin', NULL, '/resource/approve', '127.0.0.1', '', '{\"approvalAdvice\":\"\",\"approvalState\":2,\"approverId\":100,\"idList\":[62],\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"approverId\":100,\"idList\":[62],\"params\":{}}}', 0, NULL, '2025-11-27 10:02:48', 222); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1172, 17, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, '13488103555', NULL, '/course', '127.0.0.1', '', '{\"id\":29,\"params\":{},\"reviewState\":1,\"updateTime\":\"2025-11-27 10:05:25\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 10:05:25', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1173, 17, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, '13488103555', NULL, '/course', '0:0:0:0:0:0:0:1%0', '', '{\"id\":29,\"params\":{},\"reviewState\":1,\"updateTime\":\"2025-11-27 10:09:36\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 10:09:37', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1174, 17, '教师管理', 2, 'com.study.system.controller.SysUserController.editSecretKey()', 'PUT', 1, '13488103555', NULL, '/user/editSecretKey/127,126', '0:0:0:0:0:0:0:1%0', '', '[127,126]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 10:19:56', 455); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1175, 17, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '13566776677', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

老百姓的生活还好吗老百姓的生活还好吗老百姓的生活还好吗老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

老百姓的生活还好吗

\",\"courseState\":1,\"courseType\":\"\",\"coverUrl\":\"/statics/2025/11/27/ScreenShot_2025-11-10_174528_772_20251127102111A043.png\",\"createBy\":\"127\",\"createTime\":\"2025-11-27 10:21:16\",\"id\":31,\"isUse\":1,\"label\":\"\",\"name\":\"老百姓的生活还好吗\",\"params\":{},\"resource\":\"[]\",\"reviewState\":1,\"schoolId\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 10:21:16', 52); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1176, 17, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '13488103555', NULL, '/course/batchReview', '0:0:0:0:0:0:0:1%0', '', '{\"courseIds\":[31],\"params\":{},\"reviewDesc\":\"fdffff\",\"reviewState\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 10:28:30', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1177, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13566776677', NULL, '/messageRel/read/251', '0:0:0:0:0:0:0:1%0', '', '251', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 10:42:15', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1178, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":102,\"chapterType\":101,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":535,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":536,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":2,\"content\":\"\",\"id\":537,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":1,\"content\":\"\",\"id\":538,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":7,\"content\":\"\",\"id\":539,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":9,\"content\":\"\",\"id\":540,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":103,\"content\":\"[{\\\"url\\\":\\\"https://www.gov.cn/yaowen/liebiao/202511/content_7049619.htm\\\",\\\"title\\\":\\\"习近平向香港新界大埔区住宅楼重大火灾事故遇难人员和殉职的消防员表示哀悼 对遇难者家属和受灾人员表示慰问 要求全力以赴扑灭火灾 努力把火灾伤亡损失降到最低\\\",\\\"description\\\":\\\"习近平向香港新界大埔区住宅楼重大火灾事故遇难人员和殉职的消防员表示哀悼 对遇难者家属和受灾人员表示慰问 要求全力以赴扑灭火灾 努力把火灾伤亡损失降到最低\\\",\\\"addTime\\\":\\\"2025/11/27 11:11:05\\\"}]\",\"id\":541,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\', '{\"msg\":\"批量处理失败: 课程已开始或结束!\",\"code\":500}', 0, NULL, '2025-11-27 11:11:13', 173); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1179, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":102,\"chapterType\":101,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":535,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":536,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":2,\"content\":\"\",\"id\":537,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":1,\"content\":\"\",\"id\":538,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":7,\"content\":\"\",\"id\":539,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":9,\"content\":\"\",\"id\":540,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":103,\"content\":\"[{\\\"url\\\":\\\"https://www.gov.cn/yaowen/liebiao/202511/content_7049619.htm\\\",\\\"title\\\":\\\"习近平向香港新界大埔区住宅楼重大火灾事故遇难人员和殉职的消防员表示哀悼 对遇难者家属和受灾人员表示慰问 要求全力以赴扑灭火灾 努力把火灾伤亡损失降到最低\\\",\\\"description\\\":\\\"习近平向香港新界大埔区住宅楼重大火灾事故遇难人员和殉职的消防员表示哀悼 对遇难者家属和受灾人员表示慰问 要求全力以赴扑灭火灾 努力把火灾伤亡损失降到最低\\\",\\\"addTime\\\":\\\"2025/11/27 11:11:05\\\"}]\",\"id\":541,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\', '{\"msg\":\"批量处理失败: 课程已开始或结束!\",\"code\":500}', 0, NULL, '2025-11-27 11:11:46', 150); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1180, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":102,\"chapterType\":101,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":535,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":536,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":2,\"content\":\"\",\"id\":537,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":1,\"content\":\"\",\"id\":538,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":7,\"content\":\"\",\"id\":539,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":9,\"content\":\"\",\"id\":540,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":103,\"content\":\"[{\\\"url\\\":\\\"https://www.gov.cn/yaowen/liebiao/202511/content_7049619.htm\\\",\\\"title\\\":\\\"习近平向香港新界大埔区住宅楼重大火灾事故遇难人员和殉职的消防员表示哀悼 对遇难者家属和受灾人员表示慰问 要求全力以赴扑灭火灾 努力把火灾伤亡损失降到最低\\\",\\\"description\\\":\\\"习近平向香港新界大埔区住宅楼重大火灾事故遇难人员和殉职的消防员表示哀悼 对遇难者家属和受灾人员表示慰问 要求全力以赴扑灭火灾 努力把火灾伤亡损失降到最低\\\",\\\"addTime\\\":\\\"2025/11/27 11:11:05\\\"}]\",\"id\":541,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\', '{\"msg\":\"批量处理失败: 课程已开始或结束!\",\"code\":500}', 0, NULL, '2025-11-27 11:16:12', 155); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1181, 1, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, 'admin', NULL, '/course/batchReview', '127.0.0.1', '', '{\"courseIds\":[8,7],\"params\":{},\"reviewDesc\":\"不符合要求\",\"reviewState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 11:17:03', 110); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1182, 1, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.edit()', 'PUT', 1, 'admin', NULL, '/course', '0:0:0:0:0:0:0:1%0', '', '{\"courseDesc\":\"

      十分士大夫撒旦发射点发射点士大夫士大夫士大夫撒旦士大夫撒旦发射点发射点发生手动阀手动阀

士大夫士大夫胜多负少

\",\"courseState\":1,\"courseType\":\"1\",\"coverUrl\":\"/statics/2025/11/26/生成图片 (3)_20251126163700A030.png\",\"createBy\":\"1\",\"id\":26,\"isUse\":1,\"label\":\"新中国成立,党的二十大\",\"name\":\"我的测试课程\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"会议预约解决方案(1)_20251126163852A031.pptx\\\",\\\"url\\\":\\\"/statics/2025/11/26/会议预约解决方案(1)_20251126163852A031.pptx\\\",\\\"originalName\\\":null,\\\"size\\\":47392907,\\\"metadata\\\":null,\\\"uid\\\":1764146334051,\\\"status\\\":\\\"success\\\"},{\\\"name\\\":\\\"格式工厂 屏幕录像20251010_174654_20251126163922A032.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/26/格式工厂 屏幕录像20251010_174654_20251126163922A032.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":2976273,\\\"metadata\\\":null,\\\"uid\\\":1764146363237,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":2,\"schoolId\":1,\"updateTime\":\"2025-11-27 11:18:09\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 11:18:09', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1183, 1, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, 'admin', NULL, '/course', '0:0:0:0:0:0:0:1%0', '', '{\"courseDesc\":\"

22222

\",\"courseState\":1,\"courseType\":\"\",\"coverUrl\":\"/statics/2025/11/27/生成图片 (9)_20251127112405A044.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-27 11:27:07\",\"id\":32,\"isUse\":1,\"label\":\"新中国成立\",\"name\":\"我的测试课程2\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"格式工厂 屏幕录像20251120_100120_20251127112613A045.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/27/格式工厂 屏幕录像20251120_100120_20251127112613A045.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":218700034,\\\"metadata\\\":null,\\\"uid\\\":1764213977365,\\\"status\\\":\\\"success\\\"},{\\\"name\\\":\\\"狮子王AI校园防霸凌解决方案(1)_20251127112704A046.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/27/狮子王AI校园防霸凌解决方案(1)_20251127112704A046.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":4164766,\\\"metadata\\\":null,\\\"uid\\\":1764214027944,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":2,\"schoolId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 11:27:07', 75); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1184, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":92,\"chapterType\":101,\"content\":\"

中国精神00010-bbbbbbbsffsddsfdf

\",\"id\":370,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:24\"},{\"chapterId\":92,\"chapterType\":102,\"content\":\"

中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb中国精神00010-bbbbbbb

\",\"id\":371,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:24\"},{\"chapterId\":92,\"chapterType\":2,\"content\":\"\",\"id\":372,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:25\"},{\"chapterId\":92,\"chapterType\":1,\"content\":\"\",\"id\":373,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:25\"},{\"chapterId\":92,\"chapterType\":7,\"content\":\"\",\"id\":374,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:25\"},{\"chapterId\":92,\"chapterType\":9,\"content\":\"\",\"id\":375,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:25\"},{\"chapterId\":92,\"chapterType\":103,\"content\":\"\",\"id\":376,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:25\"},{\"chapterId\":92,\"chapterType\":10,\"content\":\"\",\"id\":377,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:25\"},{\"chapterId\":92,\"chapterType\":5,\"content\":\"\",\"id\":378,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:25\"},{\"chapterId\":92,\"chapterType\":8,\"content\":\"\",\"id\":379,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:26\"},{\"chapterId\":92,\"chapterType\":104,\"content\":\"\",\"id\":380,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:26\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-27 11:31:26', 1589); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1185, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":91,\"chapterType\":101,\"content\":\"

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神

中国精神fsfsdfsdf

\",\"id\":359,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:55\"},{\"chapterId\":91,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":360,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:55\"},{\"chapterId\":91,\"chapterType\":2,\"content\":\"\",\"id\":361,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:31:55\"},{\"chapterId\":91,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:32:35\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-26 15:38:34\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":47,\\\"name\\\":\\\"测试课件111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"1\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-27 11:31:57', 1585); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1186, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":91,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":91,\"chapterType\":104,\"params\":{},\"questionId\":10351},{\"chapterId\":91,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":91,\"chapterType\":104,\"params\":{},\"questionId\":10347}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-27 11:31:57', 29); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1187, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":102,\"chapterType\":101,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":535,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":536,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":2,\"content\":\"\",\"id\":537,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":1,\"content\":\"\",\"id\":538,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":7,\"content\":\"\",\"id\":539,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":9,\"content\":\"\",\"id\":540,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":103,\"content\":\"[{\\\"url\\\":\\\"https://www.gov.cn/yaowen/liebiao/202511/content_7049619.htm\\\",\\\"title\\\":\\\"习近平向香港新界大埔区住宅楼重大火灾事故遇难人员和殉职的消防员表示哀悼 对遇难者家属和受灾人员表示慰问 要求全力以赴扑灭火灾 努力把火灾伤亡损失降到最低\\\",\\\"description\\\":\\\"习近平向香港新界大埔区住宅楼重大火灾事故遇难人员和殉职的消防员表示哀悼 对遇难者家属和受灾人员表示慰问 要求全力以赴扑灭火灾 努力把火灾伤亡损失降到最低\\\",\\\"addTime\\\":\\\"2025/11/27 11:11:05\\\"}]\",\"id\":541,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\', '{\"msg\":\"批量处理失败: 课程已开始或结束!\",\"code\":500}', 0, NULL, '2025-11-27 11:32:39', 169); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1188, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":102,\"chapterType\":101,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":535,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":102,\"content\":\"

中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa中国精神00010-aaaaaaaaaaaaaa

\",\"id\":536,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":2,\"content\":\"\",\"id\":537,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":1,\"content\":\"\",\"id\":538,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":7,\"content\":\"\",\"id\":539,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":9,\"content\":\"\",\"id\":540,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":103,\"content\":\"[{\\\"url\\\":\\\"https://www.gov.cn/yaowen/liebiao/202511/content_7049619.htm\\\",\\\"title\\\":\\\"习近平向香港新界大埔区住宅楼重大火灾事故遇难人员和殉职的消防员表示哀悼 对遇难者家属和受灾人员表示慰问 要求全力以赴扑灭火灾 努力把火灾伤亡损失降到最低\\\",\\\"description\\\":\\\"习近平向香港新界大埔区住宅楼重大火灾事故遇难人员和殉职的消防员表示哀悼 对遇难者家属和受灾人员表示慰问 要求全力以赴扑灭火灾 努力把火灾伤亡损失降到最低\\\",\\\"addTime\\\":\\\"2025/11/27 11:11:05\\\"}]\",\"id\":541,\"params\":{},\"schoolId\":1},{\"chapterId\":102,\"chapterType\":10,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:52:29\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":58,\\\"name\\\":\\\"测试图书1111111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155218A027.pdf\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155152A026.png\\\",\\\"description\\\":\\\"

测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111测试图书1111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\', '{\"msg\":\"批量处理失败: 课程已开始或结束!\",\"code\":500}', 0, NULL, '2025-11-27 11:33:29', 170); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1189, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":88,\"chapterType\":101,\"content\":\"

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

\",\"id\":348,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:41\"},{\"chapterId\":88,\"chapterType\":102,\"content\":\"

中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001中国精神0001

\",\"id\":349,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:41\"},{\"chapterId\":88,\"chapterType\":2,\"content\":\"\",\"id\":350,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:41\"},{\"chapterId\":88,\"chapterType\":1,\"content\":\"\",\"id\":351,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:41\"},{\"chapterId\":88,\"chapterType\":7,\"content\":\"\",\"id\":352,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:42\"},{\"chapterId\":88,\"chapterType\":9,\"content\":\"\",\"id\":353,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:42\"},{\"chapterId\":88,\"chapterType\":103,\"content\":\"\",\"id\":354,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:42\"},{\"chapterId\":88,\"chapterType\":10,\"content\":\"\",\"id\":355,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:42\"},{\"chapterId\":88,\"chapterType\":5,\"content\":\"\",\"id\":356,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:42\"},{\"chapterId\":88,\"chapterType\":8,\"content\":\"\",\"id\":357,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:42\"},{\"chapterId\":88,\"chapterType\":104,\"content\":\"\",\"id\":358,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-27 11:33:42\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-27 11:33:43', 1444); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1190, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-11-27 12:46:09\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识111\",\"welcomeMessage\":\"欢迎使用中硕思政教学系统11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 12:46:10', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1191, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-11-27 12:55:15\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 12:55:16', 106); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1192, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"code\":\"10521651\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-27\",\"nickName\":\"杨飞虎\",\"params\":{},\"phoneNumber\":\"15202903073\",\"roleId\":3,\"roleIds\":[3],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userType\":\"22\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2025-11-27 12:57:48', 83); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1193, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"10521651\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-27\",\"nickName\":\"杨飞虎\",\"params\":{},\"phoneNumber\":\"15202903073\",\"roleId\":3,\"roleIds\":[3],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userType\":\"22\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2025-11-27 12:57:53', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1194, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"code\":\"10521651\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2025-11-27\",\"nickName\":\"杨飞虎\",\"params\":{},\"phoneNumber\":\"15202903074\",\"roleId\":3,\"roleIds\":[3],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"userId\":128,\"userName\":\"15202903074\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 12:58:00', 308); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1195, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-27 15:00:11\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/27/logo2_20251127145909A001.png\",\"mail\":\"aab@aa.com\",\"manager\":\"泰斯特\",\"mgrGender\":\"0\",\"mgrPhone\":\"13199999999\",\"params\":{},\"schoolId\":18,\"schoolName\":\"test\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-27 15:00:11\",\"userId\":129}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 15:00:16', 2098); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1196, 17, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, '13488103555', NULL, '/student', '0:0:0:0:0:0:0:1%0', '', '{\"avatar\":\"/statics/2025/11/27/file_20251127151539A047.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAEsASwDAREAAhEBAxEB/8QAHwAAAAYCAwEAAAAAAAAAAAAABAUGBwgJAAMBAgoL/8QAdhAAAQMCBAQDBAYDBgkUCwwLAQIDBAURAAYHIQgSMUETUWEJInGBFDKRobHwFcHRFhgjQpfhFyQnUlhy1dfxChklJjM1NzlDU1VWYpSWmLO309gaNllkc3eCh6Ky1ig0REdUZWZ1hKfI0ik4Y3R2g4aIkpPH/8QAHgEAAQMFAQEAAAAAAAAAAAAAAAMGBwECBAUICQr/xAB0EQABAwIDBAQIBAgXDQUFBQkBAgMRAAQFITEGBxJBE1FhcQgigZGhscHwCRQy0RUWI1STlLbhFxgZMzc4QlJTVldzdXaSlbTS09TV1vE0NTZVYmZyd3iWl7O4JCVDgrImKEZjhSdEhsPFZXSEoqOmqMTX/9oADAMBAAIRAxEAPwD5/wDgoq3H2Hov7Q/TgDqdOtdgL9N9Hc5DfDs2R/H9o/2h7ffcjjFc1eFH/gnur/2o/BR/6hN3de05mObBR90BANv66999/lb0xBddu0dxWfdCblSU+8NvM3INj+ztt5gBOgPmNFGjLRJTayeuxO4+t2F+9t7jri5Pyh2TPmoo6ZaKAU85INiBe6vM3+Hpv+tarFkRkQZPIijmK0OQg33BB6X6AbH898FJUestgtoF1HmUATsbdB5enw63wogEEyCMurtFFGbLJWq17EK77AgHob9+h8rdsKUUbNNq5uVQ902FxuTa+97WwUUYpZ2uokG+wBA+fQn59vLBRQlDBN+YE+Vj8fyPhhRBABkx3n2e/opNzl5fZQhETxAU2KUkXJVfe1ulxa3ncHqflktPdHMGQYmIOk+asV1oOFJJjhnrzmMuznSYrmTKJX4sqFVafDmx5DamnmX47T7D6VIKeV1hxK2nUgE7KQRc7kb4WbvXrdxFyzdPMOoWAA2CQRrJA98iJmsO6sUvMqSoBSFeKRA59mfXOXVyyqAGo/s2NK87V2HVaGh7KVqkw9UGKUhP0GXE8VLkqO1EWtAhOPthTSFx1hlrnJTHFuXE', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 15:15:39', 487); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1197, 17, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '13488103555', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"/statics/2025/11/27/file_20251127151653A048.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAEsASwDAREAAhEBAxEB/8QAHwAAAgMBAQEBAQEBAAAAAAAABwgFBgkECgMCAQAL/8QATxAAAgEDAwIEBAMFBQYDBAgHAQIDBAURBhIhADEHE0FRCBQiYTJxgRUjQpGhCbHB4fAWJDNSYtElQ/EXNFNyGCZjc4KS0uI1RVRWk6LC/8QAHQEAAgIDAQEBAAAAAAAAAAAAAAUDBAECBgcICf/EAEYRAAECBAMFBgQFAgQEBgIDAAECEQADITEEQVEFEmFxgQYTkaGx8CIywdEUM1Lh8QdCFSNicjSCorIWQ5LC0uJTcyQlY//aAAwDAQACEQMRAD8AaYopGCoI+4HSeF8f0ADgAAewAHRBH8IABIAyASOB0QR/FpoamnqKSWNHgrVMdTG6hkmV8qRIpBDD7HoggIaAhm0bqi++H9a7JS09V87Y5XJ2GiByIYM4Aix2VePbogg9+SWPmAYLHeMDtnkfw+nRBHVDDIzfUSfzz/XI/Tt9ufQgiapV2FV9iPt3yf8AHogiYiUMSCAQcZB9cbiM/ke3RBAw8X7VKluteqqRD8zZLhTozoMSCnkcO4DDkKAvI6IIMtqlir7ZbqyDGKumhqXKjuzouQfuOe//AHwQRZqOAKRvAIwOCPXIOf7/AOf6AgifVAkatFEhfAABUH8RCk/mAc/p+nRBFN1TeptOr500gMRUs68MEUAk/Scg8DIHt1pM+RXKN0X6Qk3iB4yaKuMV1hmvCUVbNK0VKyXP5IoyAqyiNZF3AscMgGGAK+p6p4e9LvTyi7GQ/ib41T0kmodPxVUFxhluDrFM7eaB9RwQc8enbtz9unMm3h9ffHjBC21/jLd7Q/y8V4lktp/HQ3Gd6irIPcIXZiB32/oOB0yElZANKgUeg6QR3nWdJqmge/3Q1P7L05TrIiRuyy18k6eYlHL2MkVOW8pFPCKoUYHWe5Xw8YIp1k8ZKV6x42pqGnakDw0cNyjSWopIGJkENE7jdFu37gFI+psj1HR3K+HjBBR0x8RlTYmloVuVZSK1RGyrV1DzuD', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 15:16:53', 463); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1198, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-27 15:28:55\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/27/logo1_20251127152853A003.png\",\"mail\":\"aab@aa.com\",\"manager\":\"泰斯特\",\"mgrGender\":\"0\",\"mgrPhone\":\"13199999999\",\"params\":{},\"schoolId\":20,\"schoolName\":\"test\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-27 15:28:55\",\"userId\":132}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 15:29:10', 14445); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1199, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"11\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10353},{\"description\":\"11\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10353},{\"description\":\"11\",\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10353},{\"description\":\"11\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10353}],\"createBy\":\"1\",\"createTime\":\"2025-11-27 15:50:09\",\"id\":10353,\"params\":{},\"questionAnalysis\":\"\",\"questionAnswer\":\"C\",\"questionCourseName\":\"-\",\"questionDesc\":\"11\",\"questionScore\":\"20\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 15:50:11', 588); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1200, 17, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '13488103555', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":30,\"createBy\":\"123\",\"createTime\":\"2025-11-27 15:54:50\",\"id\":137,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"我的课程1\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":30,\"createBy\":\"123\",\"createTime\":\"2025-11-27 15:54:51\",\"id\":137,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"我的课程1\"}}', 0, NULL, '2025-11-27 15:54:50', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1201, 17, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, '13488103555', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-27 16:03:38\",\"id\":34,\"isCurrent\":0,\"isDel\":0,\"isSemester\":0,\"name\":\"2026学年\",\"params\":{},\"schoolId\":17,\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 16:03:39', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1202, 17, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, '13488103555', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"createTime\":\"2025-11-27 16:03:58\",\"endDate\":\"2025-11-30\",\"id\":35,\"isCurrent\":0,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":34,\"schoolId\":17,\"startDate\":\"2025-11-01\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 16:03:58', 54); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1203, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,7,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-27 18:02:30\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/27/123b2f4d-a2d3-4199-b7f4-a941af69ddcf_removalai_preview_20251127174938A001.png\",\"mail\":\"11@11.com\",\"manager\":\"杨飞虎\",\"mgrGender\":\"0\",\"mgrPhone\":\"15202903075\",\"params\":{},\"schoolId\":21,\"schoolName\":\"中硕大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-11-27 18:02:30\",\"userId\":133}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:02:31', 1077); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1204, 21, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, '15202903075', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2186,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055],\"params\":{},\"remark\":\"普通角色\",\"roleId\":179,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":21,\"status\":\"0\",\"updateBy\":\"15202903075\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:03:32', 431); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1205, 21, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, '15202903075', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"createTime\":\"2025-11-27 18:04:39\",\"id\":36,\"isCurrent\":1,\"isDel\":0,\"isSemester\":0,\"name\":\"2025-2026学年\",\"params\":{},\"schoolId\":21,\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:04:39', 105); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1206, 21, '学年学期设置', 1, 'com.study.setting.controller.BaseAcademicController.add()', 'POST', 1, '15202903075', NULL, '/academic', '0:0:0:0:0:0:0:1%0', '', '{\"childCount\":0,\"createTime\":\"2025-11-27 18:05:19\",\"endDate\":\"2025-12-31\",\"id\":37,\"isCurrent\":1,\"isDel\":0,\"isSemester\":1,\"name\":\"第一学期\",\"params\":{},\"pid\":36,\"schoolId\":21,\"startDate\":\"2025-09-01\",\"state\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:05:19', 104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1207, 21, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '15202903075', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0\",\"children\":[],\"createBy\":\"15202903075\",\"deptName\":\"马克思主义学院\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"ys001\",\"orgDesc\":\"\",\"orgLevel\":1,\"params\":{},\"parentId\":0,\"schId\":21,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:08:25', 103); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1208, 21, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '15202903075', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0,27\",\"children\":[],\"createBy\":\"15202903075\",\"deptName\":\"思想政治与教育\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"zy001\",\"orgDesc\":\"\",\"orgLevel\":2,\"params\":{},\"parentId\":27,\"schId\":21,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:09:21', 117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1209, 21, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '15202903075', NULL, '/dept', '0:0:0:0:0:0:0:1%0', '', '{\"ancestors\":\"0,27,28\",\"children\":[],\"createBy\":\"15202903075\",\"deptName\":\"2025界\",\"endYear\":\"\",\"enterYear\":\"2025\",\"orderNum\":0,\"orgCode\":\"xj001\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":28,\"schId\":21,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:11:43', 134); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1210, 21, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '15202903075', NULL, '/dept', '0:0:0:0:0:0:0:1%0', '', '{\"academicId\":36,\"ancestors\":\"0,27,28,29\",\"children\":[],\"createBy\":\"15202903075\",\"deptName\":\"2025思政一班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"bj001\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":29,\"schId\":21,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:13:11', 136); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1211, 21, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, '15202903075', NULL, '/student', '0:0:0:0:0:0:0:1%0', '', '{\"code\":\"student001\",\"createBy\":\"15202903075\",\"createTime\":\"2025-11-27 18:14:06\",\"deptAncestors\":[\"27\",\"28\",\"29\",\"30\"],\"deptCode\":\"-\",\"deptId\":30,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治与教育,2025界,2025思政一班\\\",\\\"deptIds\\\":\\\"27,28,29,30\\\"}\",\"deptName\":\"-\",\"email\":\"1213@qq.com\",\"id\":14,\"joinTime\":\"2025-11-27\",\"params\":{},\"phoneNumber\":\"15202903076\",\"schId\":21,\"sex\":\"0\",\"status\":\"0\",\"userName\":\"马斯克\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:14:06', 408); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1212, 21, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '15202903075', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"teacher001\",\"createBy\":\"15202903075\",\"deptClassInfoList\":[{\"deptCode\":\"bj001\",\"deptId\":30,\"deptName\":\"2025思政一班\"}],\"deptCode\":\"-\",\"deptId\":27,\"deptName\":\"-\",\"email\":\"22@qq.com\",\"joinTime\":\"2025-11-27\",\"nickName\":\"李老师\",\"params\":{},\"phoneNumber\":\"15202903077\",\"roleId\":179,\"roleIds\":[179],\"schId\":21,\"sex\":\"1\",\"status\":\"0\",\"userId\":134,\"userName\":\"15202903077\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:15:31', 474); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1213, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"智能答疑、个性化学习路径规划与学情分析\",\"appIconPath\":\"/statics/2025/11/07/ScreenShot_2025-11-07_191017_634 拷贝_20251107191123A012.png\",\"appId\":6,\"appName\":\"AI助教\",\"appPath\":\"/aiSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"6\",\"updateBy\":\"admin\",\"updateTime\":\"2025-11-27 18:33:19\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-27 18:33:20', 1046); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1214, 21, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, '15202903075', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":1,\"authorId\":133,\"authorName\":\"杨飞虎\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128103245A002.jpg\",\"createBy\":\"133\",\"createTime\":\"2025-11-28 10:50:00\",\"description\":\"

哈哈哈哈😆

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"采购需求和技术参数1104定稿_20251128104947A003.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/采购需求和技术参数1104定稿_20251128104947A003.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":345982,\\\"metadata\\\":null,\\\"uid\\\":1764298187770,\\\"status\\\":\\\"success\\\"}]\",\"id\":63,\"name\":\"我的课件资源\",\"params\":{},\"premiumTypes\":\"\",\"schId\":21,\"source\":\"2\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":1,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":133,\"authorName\":\"杨飞虎\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128103245A002.jpg\",\"createBy\":\"133\",\"createTime\":\"2025-11-28 10:50:00\",\"description\":\"

哈哈哈哈😆

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"采购需求和技术参数1104定稿_20251128104947A003.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/采购需求和技术参数1104定稿_20251128104947A003.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":345982,\\\"metadata\\\":null,\\\"uid\\\":1764298187770,\\\"status\\\":\\\"success\\\"}]\",\"id\":63,\"name\":\"我的课件资源\",\"params\":{},\"schId\":21,\"source\":\"2\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":1,\"viewCount\":0}}', 0, NULL, '2025-11-28 10:50:01', 772); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1215, 21, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, '15202903075', NULL, '/resource/approve', '0:0:0:0:0:0:0:1%0', '', '{\"approvalAdvice\":\"\",\"approvalState\":2,\"approverId\":133,\"idList\":[63],\"params\":{},\"sysAndCurrentSchool\":false}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"approverId\":133,\"idList\":[63],\"params\":{},\"sysAndCurrentSchool\":false}}', 0, NULL, '2025-11-28 10:51:02', 182); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1216, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '0:0:0:0:0:0:0:1%0', '', '{\"courseId\":32,\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:35:22\",\"id\":138,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"一级目录\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":32,\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:35:22\",\"id\":138,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"一级目录\"}}', 0, NULL, '2025-11-28 11:35:22', 148); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1217, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '0:0:0:0:0:0:0:1%0', '', '{\"courseId\":32,\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:35:38\",\"id\":139,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":138,\"schoolId\":1,\"subChapters\":[],\"title\":\"二级目录\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":32,\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:35:39\",\"id\":139,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":2,\"params\":{},\"pid\":138,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"二级目录\"}}', 0, NULL, '2025-11-28 11:35:39', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1218, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":101,\"content\":\"

 士大夫士大夫撒旦发射点发射点

十大科技上的立刻就发生了口角

\\\"bg1_20251128113626A005.jpeg\\\"

\",\"createTime\":\"2025-11-28 11:36:55\",\"id\":612,\"params\":{},\"schoolId\":1},{\"chapterId\":138,\"chapterType\":102,\"content\":\"\",\"createTime\":\"2025-11-28 11:36:55\",\"id\":613,\"params\":{},\"schoolId\":1},{\"chapterId\":138,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-11-28 11:36:55\",\"id\":614,\"params\":{},\"schoolId\":1},{\"chapterId\":138,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-11-28 11:36:55\",\"id\":615,\"params\":{},\"schoolId\":1},{\"chapterId\":138,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-11-28 11:36:56\",\"id\":616,\"params\":{},\"schoolId\":1},{\"chapterId\":138,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-11-28 11:36:56\",\"id\":617,\"params\":{},\"schoolId\":1},{\"chapterId\":138,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-11-28 11:36:56\",\"id\":618,\"params\":{},\"schoolId\":1},{\"chapterId\":138,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-11-28 11:36:56\",\"id\":619,\"params\":{},\"schoolId\":1},{\"chapterId\":138,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-11-28 11:36:56\",\"id\":620,\"params\":{},\"schoolId\":1},{\"chapterId\":138,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-11-28 11:36:56\",\"id\":621,\"params\":{},\"schoolId\":1},{\"chapterId\":138,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-11-28 11:36:56\",\"id\":622,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 11:36:56', 1050); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1219, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:45:31\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\",\\\"originalName\\\":\\\"第一章红色虚拟展馆.zip\\\",\\\"size\\\":146428201,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1764301392734,\\\"status\\\":\\\"success\\\"}]\",\"id\":64,\"name\":\"第一章 红色展厅介绍\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":9,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:45:31\",\"description\":\"


\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\",\\\"originalName\\\":\\\"第一章红色虚拟展馆.zip\\\",\\\"size\\\":146428201,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1764301392734,\\\"status\\\":\\\"success\\\"}]\",\"id\":64,\"name\":\"第一章 红色展厅介绍\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":9,\"viewCount\":0}}', 0, NULL, '2025-11-28 11:45:31', 79); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1220, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:45:32\",\"description\":\"

哈哈哈哈

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\",\\\"originalName\\\":\\\"第一章红色虚拟展馆.zip\\\",\\\"size\\\":146428201,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1764301392734,\\\"status\\\":\\\"success\\\"}]\",\"id\":64,\"isDel\":0,\"name\":\"第一章 红色展厅介绍\",\"params\":{},\"premiumTypes\":\"1\",\"referenceCount\":0,\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":9,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 11:58:33\",\"viewCount\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:45:32\",\"description\":\"

哈哈哈哈

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\",\\\"originalName\\\":\\\"第一章红色虚拟展馆.zip\\\",\\\"size\\\":146428201,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1764301392734,\\\"status\\\":\\\"success\\\"}]\",\"id\":64,\"isDel\":0,\"name\":\"第一章 红色展厅介绍\",\"params\":{},\"premiumTypes\":\"1\",\"referenceCount\":0,\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":9,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 11:58:33\",\"viewCount\":1}}', 0, NULL, '2025-11-28 11:58:33', 77); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1221, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/28/logo1_20251128115157A009.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:59:09\",\"description\":\"

资源简洁展厅士大夫士大夫

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":222985657,\\\"metadata\\\":null,\\\"uid\\\":1764302347115,\\\"status\\\":\\\"success\\\"}]\",\"id\":65,\"name\":\"test\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":1,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/28/logo1_20251128115157A009.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:59:09\",\"description\":\"

资源简洁展厅士大夫士大夫

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":222985657,\\\"metadata\\\":null,\\\"uid\\\":1764302347115,\\\"status\\\":\\\"success\\\"}]\",\"id\":65,\"name\":\"test\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":1,\"viewCount\":0}}', 0, NULL, '2025-11-28 11:59:09', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1222, 21, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, '15202903075', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":1,\"authorId\":133,\"authorName\":\"杨飞虎\",\"categoryId\":2,\"coverImgPath\":\"\",\"createBy\":\"133\",\"createTime\":\"2025-11-28 12:02:02\",\"description\":\"

哈哈哈

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"4-7-8_20251128120154A011.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/28/4-7-8_20251128120154A011.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":6682679,\\\"metadata\\\":null,\\\"uid\\\":1764302514460,\\\"status\\\":\\\"success\\\"}]\",\"id\":66,\"name\":\"我的测试视频\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":21,\"source\":\"2\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":2,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":133,\"authorName\":\"杨飞虎\",\"categoryId\":2,\"createBy\":\"133\",\"createTime\":\"2025-11-28 12:02:02\",\"description\":\"

哈哈哈

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"4-7-8_20251128120154A011.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/28/4-7-8_20251128120154A011.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":6682679,\\\"metadata\\\":null,\\\"uid\\\":1764302514460,\\\"status\\\":\\\"success\\\"}]\",\"id\":66,\"name\":\"我的测试视频\",\"params\":{},\"premiumTypes\":\"1\",\"schId\":21,\"source\":\"2\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":2,\"viewCount\":0}}', 0, NULL, '2025-11-28 12:02:02', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1223, 21, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, '15202903075', NULL, '/resource/approve', '127.0.0.1', '', '{\"approvalAdvice\":\"\",\"approvalState\":2,\"approverId\":133,\"idList\":[66],\"params\":{},\"sysAndCurrentSchool\":false}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"approverId\":133,\"idList\":[66],\"params\":{},\"sysAndCurrentSchool\":false}}', 0, NULL, '2025-11-28 12:02:10', 193); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1224, 1, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10021,\"params\":{},\"questionId\":10351,\"questionMarks\":5,\"questionSortBy\":1},{\"examId\":10021,\"params\":{},\"questionId\":10350,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10021,\"params\":{},\"questionId\":10343,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10021,\"params\":{},\"questionId\":10342,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10021,\"params\":{},\"questionId\":10352,\"questionMarks\":5,\"questionSortBy\":5}],\"createBy\":\"1\",\"createTime\":\"2025-11-28 12:12:09\",\"estimateMark\":5,\"estimateNum\":1,\"examCourseId\":6,\"examRank\":3,\"examTime\":120,\"examTitle\":\"杨测试试卷\",\"fullMark\":25,\"id\":10021,\"multipleMark\":10,\"multipleNum\":2,\"params\":{},\"passMark\":80,\"remark\":\"无\",\"schId\":1,\"singleMark\":10,\"singleNum\":2,\"status\":0,\"updateBy\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 12:12:09', 305); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1225, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10021,\"params\":{},\"questionId\":10351,\"questionMarks\":5,\"questionSortBy\":1},{\"examId\":10021,\"params\":{},\"questionId\":10350,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10021,\"params\":{},\"questionId\":10343,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10021,\"params\":{},\"questionId\":10342,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10021,\"params\":{},\"questionId\":10352,\"questionMarks\":5,\"questionSortBy\":5}],\"createBy\":\"1\",\"estimateMark\":5,\"estimateNum\":1,\"examCourseId\":6,\"examRank\":3,\"examTime\":120,\"examTitle\":\"杨测试试卷\",\"fullMark\":25,\"id\":10021,\"multipleMark\":10,\"multipleNum\":2,\"params\":{},\"passMark\":80,\"remark\":\"无\",\"schId\":1,\"singleMark\":10,\"singleNum\":2,\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 12:12:32\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 12:12:32', 254); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1226, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10021,\"params\":{},\"questionId\":10351,\"questionMarks\":5,\"questionSortBy\":1},{\"examId\":10021,\"params\":{},\"questionId\":10350,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10021,\"params\":{},\"questionId\":10343,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10021,\"params\":{},\"questionId\":10342,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10021,\"params\":{},\"questionId\":10352,\"questionMarks\":5,\"questionSortBy\":5}],\"estimateMark\":5,\"estimateNum\":1,\"examCourseId\":6,\"examRank\":3,\"examTime\":120,\"examTitle\":\"杨测试试卷\",\"fullMark\":25,\"id\":10021,\"multipleMark\":10,\"multipleNum\":2,\"params\":{},\"passMark\":10,\"remark\":\"无\",\"schId\":1,\"singleMark\":10,\"singleNum\":2,\"status\":100,\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 12:14:25\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 12:14:26', 282); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1227, 21, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, '15202903075', NULL, '/examInfo', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10022,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1},{\"examId\":10022,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2},{\"examId\":10022,\"params\":{},\"questionId\":10329,\"questionMarks\":11,\"questionSortBy\":3},{\"examId\":10022,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":4},{\"examId\":10022,\"params\":{},\"questionId\":10352,\"questionMarks\":5,\"questionSortBy\":5}],\"createTime\":\"2025-11-28 12:20:45\",\"estimateMark\":5,\"estimateNum\":1,\"examCourseId\":9,\"examRank\":3,\"examTime\":120,\"examTitle\":\"杨测试试卷\",\"fullMark\":22,\"id\":10022,\"multipleMark\":13,\"multipleNum\":2,\"params\":{},\"passMark\":10,\"remark\":\"\",\"schId\":21,\"singleMark\":4,\"singleNum\":2,\"status\":100,\"updateBy\":\"133\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 12:20:45', 225); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1228, 21, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, '15202903075', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":37,\"baseExamPlanClassList\":[{\"classId\":30,\"deptCode\":\"bj001\",\"deptId\":30,\"deptName\":\"2025思政一班\",\"params\":{},\"planId\":112}],\"createBy\":\"133\",\"createTime\":\"2025-11-28 12:25:00\",\"examAddress\":\"第二教室\",\"examEndTime\":\"2025-11-28 17:00:00\",\"examInfoId\":10022,\"examStartTime\":\"2025-11-28 14:00:00\",\"examTitle\":\"杨创建的考试安排\",\"id\":112,\"params\":{},\"schId\":21}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 12:25:00', 394); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1229, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":101,\"content\":\"


\",\"id\":612,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:47\"},{\"chapterId\":138,\"chapterType\":102,\"content\":\"\",\"id\":613,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:47\"},{\"chapterId\":138,\"chapterType\":2,\"content\":\"\",\"id\":614,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:48\"},{\"chapterId\":138,\"chapterType\":1,\"content\":\"\",\"id\":615,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:48\"},{\"chapterId\":138,\"chapterType\":7,\"content\":\"\",\"id\":616,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:48\"},{\"chapterId\":138,\"chapterType\":9,\"content\":\"\",\"id\":617,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:48\"},{\"chapterId\":138,\"chapterType\":103,\"content\":\"\",\"id\":618,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:48\"},{\"chapterId\":138,\"chapterType\":10,\"content\":\"\",\"id\":619,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:48\"},{\"chapterId\":138,\"chapterType\":5,\"content\":\"\",\"id\":620,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:49\"},{\"chapterId\":138,\"chapterType\":8,\"content\":\"\",\"id\":621,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:49\"},{\"chapterId\":138,\"chapterType\":104,\"content\":\"\",\"id\":622,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 14:45:49\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 14:45:49', 1928); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1230, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":138,\"chapterType\":101,\"content\":\"


\",\"id\":612,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:35\"},{\"chapterId\":138,\"chapterType\":102,\"content\":\"\",\"id\":613,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:36\"},{\"chapterId\":138,\"chapterType\":2,\"content\":\"\",\"id\":614,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:36\"},{\"chapterId\":138,\"chapterType\":1,\"content\":\"\",\"id\":615,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:36\"},{\"chapterId\":138,\"chapterType\":7,\"content\":\"\",\"id\":616,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:36\"},{\"chapterId\":138,\"chapterType\":9,\"content\":\"{\\\"id\\\":64,\\\"name\\\":\\\"第一章 红色展厅介绍\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/%E7%AC%AC%E4%B8%80%E7%AB%A0%E7%BA%A2%E8%89%B2%E8%99%9A%E6%8B%9F%E5%B1%95%E9%A6%86_20251128114310A008/index.html\\\",\\\"size\\\":146428201,\\\"type\\\":\\\"第一章 红色展厅介绍\\\",\\\"source\\\":\\\"系统内置\\\"}\",\"id\":617,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:36\"},{\"chapterId\":138,\"chapterType\":103,\"content\":\"\",\"id\":618,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:36\"},{\"chapterId\":138,\"chapterType\":10,\"content\":\"\",\"id\":619,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:36\"},{\"chapterId\":138,\"chapterType\":5,\"content\":\"\",\"id\":620,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:36\"},{\"chapterId\":138,\"chapterType\":8,\"content\":\"\",\"id\":621,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:37\"},{\"chapterId\":138,\"chapterType\":104,\"content\":\"\",\"id\":622,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:02:37\"}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 15:02:37', 1379); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1231, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":9,\"params\":{},\"resourceId\":64}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-28 15:02:37', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1232, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导

\\\"tx_20251128150302A012.png\\\"

\",\"createTime\":\"2025-11-28 15:12:05\",\"id\":623,\"params\":{},\"schoolId\":1},{\"chapterId\":139,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"createTime\":\"2025-11-28 15:12:05\",\"id\":624,\"params\":{},\"schoolId\":1},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"系统内置\\\"}\",\"createTime\":\"2025-11-28 15:12:05\",\"id\":625,\"params\":{},\"schoolId\":1},{\"chapterId\":139,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:32:35\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-26 15:38:34\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":47,\\\"name\\\":\\\"测试课件111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\\\",\\\"viewCount\\\":1,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142351913,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":2,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"s', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 15:12:05', 866); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1233, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":58},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":59},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":18}', 0, NULL, '2025-11-28 15:12:06', 83); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1234, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"T0888\",\"createBy\":\"admin\",\"createTime\":\"2025-11-13 17:56:38\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"\",\"joinTime\":\"2025-11-04\",\"loginIp\":\"\",\"nickName\":\"haha88\",\"params\":{},\"phoneNumber\":\"13388990088\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"status\":\"0\"}],\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":117,\"userName\":\"13388990088\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:13:04', 613); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1235, 1, '字典数据', 2, 'com.study.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2025-11-16 16:00:34\",\"default\":false,\"dictCode\":107,\"dictLabel\":\"未开始\",\"dictSort\":0,\"dictType\":\"exam_plan_status\",\"dictValue\":\"1\",\"isDefault\":\"N\",\"listClass\":\"danger\",\"params\":{},\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:23:20', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1236, 1, '字典数据', 2, 'com.study.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2025-11-16 16:00:51\",\"default\":false,\"dictCode\":108,\"dictLabel\":\"进行中\",\"dictSort\":10,\"dictType\":\"exam_plan_status\",\"dictValue\":\"2\",\"isDefault\":\"N\",\"listClass\":\"primary\",\"params\":{},\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:23:38', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1237, 1, '字典数据', 2, 'com.study.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2025-11-16 16:01:12\",\"default\":false,\"dictCode\":109,\"dictLabel\":\"已结束\",\"dictSort\":100,\"dictType\":\"exam_plan_status\",\"dictValue\":\"3\",\"isDefault\":\"N\",\"listClass\":\"success\",\"params\":{},\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:23:59', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1238, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 15:32:34\",\"description\":\"

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"id\":67,\"name\":\"新疆图书\",\"params\":{},\"premiumTypes\":\"\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":10,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 15:32:34\",\"description\":\"

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"id\":67,\"name\":\"新疆图书\",\"params\":{},\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":10,\"viewCount\":0}}', 0, NULL, '2025-11-28 15:32:34', 82); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1239, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导

\\\"tx_20251128150302A012.png\\\"

\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:33:00\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:33:00\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"系统内置\\\"}\",\"id\":625,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:33:00\"},{\"chapterId\":139,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:32:35\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-26 15:38:34\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":47,\\\"name\\\":\\\"测试课件111111\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"系统内置\\\",\\\"sourceUrl\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

测试课件111111测试课件111111测试课件111111测试课件111111测试课件111111

\\\",\\\"viewCount\\\":1,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126153231A007.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":888915,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142351913,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":2,\\\"typeId\\\":1,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"s', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 15:33:02', 1940); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1240, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3}', 0, NULL, '2025-11-28 15:33:02', 152); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1241, 1, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10023,\"params\":{},\"questionId\":10353,\"questionMarks\":20,\"questionSortBy\":1},{\"examId\":10023,\"params\":{},\"questionId\":10351,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10023,\"params\":{},\"questionId\":10350,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10023,\"params\":{},\"questionId\":10347,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10023,\"params\":{},\"questionId\":10346,\"questionMarks\":5,\"questionSortBy\":5},{\"examId\":10023,\"params\":{},\"questionId\":10339,\"questionMarks\":5,\"questionSortBy\":6},{\"examId\":10023,\"params\":{},\"questionId\":10338,\"questionMarks\":5,\"questionSortBy\":7},{\"examId\":10023,\"params\":{},\"questionId\":10337,\"questionMarks\":5,\"questionSortBy\":8},{\"examId\":10023,\"params\":{},\"questionId\":10336,\"questionMarks\":5,\"questionSortBy\":9},{\"examId\":10023,\"params\":{},\"questionId\":10335,\"questionMarks\":5,\"questionSortBy\":10},{\"examId\":10023,\"params\":{},\"questionId\":10343,\"questionMarks\":5,\"questionSortBy\":11},{\"examId\":10023,\"params\":{},\"questionId\":10342,\"questionMarks\":5,\"questionSortBy\":12},{\"examId\":10023,\"params\":{},\"questionId\":10341,\"questionMarks\":5,\"questionSortBy\":13},{\"examId\":10023,\"params\":{},\"questionId\":10340,\"questionMarks\":5,\"questionSortBy\":14},{\"examId\":10023,\"params\":{},\"questionId\":10329,\"questionMarks\":11,\"questionSortBy\":15},{\"examId\":10023,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":16},{\"examId\":10023,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":17}],\"createTime\":\"2025-11-28 15:37:48\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":3,\"examTime\":13,\"examTitle\":\"test\",\"fullMark\":100,\"id\":10023,\"multipleMark\":35,\"multipleNum\":7,\"params\":{},\"passMark\":10,\"remark\":\"1212\",\"schId\":1,\"singleMark\":65,\"singleNum\":10,\"status\":100,\"updateBy\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:37:49', 558); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1242, 1, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-28 15:39:01\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":3,\"examTime\":19,\"examTitle\":\"t1\",\"fullMark\":0,\"id\":10024,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"passMark\":80,\"remark\":\"\",\"schId\":1,\"singleMark\":0,\"singleNum\":0,\"status\":0,\"updateBy\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:39:01', 165); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1243, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"createBy\":\"1\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":3,\"examTime\":19,\"examTitle\":\"t1\",\"fullMark\":0,\"id\":10024,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"passMark\":80,\"remark\":\"\",\"schId\":1,\"singleMark\":0,\"singleNum\":0,\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 15:43:22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:43:22', 228); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1244, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:46:56\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:46:56\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 15:46:58', 1811); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1245, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 15:46:58', 34); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1246, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:47:42\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:47:42\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 15:47:43', 1815); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1247, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 15:47:44', 32); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1248, 21, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '15202903075', NULL, '/course', '0:0:0:0:0:0:0:1%0', '', '{\"courseDesc\":\"

本章旨在引导学生思考人生的意义与价值,树立正确的人生观和价值观,把握青春的航向,为实现人生理想奠定基础。

\",\"courseState\":1,\"courseType\":\"1,2\",\"coverUrl\":\"/statics/2025/11/28/生成图片 (10)_20251128154552A017.png\",\"createBy\":\"133\",\"createTime\":\"2025-11-28 15:48:08\",\"id\":33,\"isUse\":1,\"label\":\"新中国成立\",\"name\":\"中硕大学第一个课程\",\"params\":{},\"resource\":\"[{\\\"name\\\":\\\"4-7-8_20251128154628A018.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/28/4-7-8_20251128154628A018.mp4\\\",\\\"originalName\\\":null,\\\"size\\\":6682679,\\\"metadata\\\":null,\\\"uid\\\":1764315988628,\\\"status\\\":\\\"success\\\"},{\\\"name\\\":\\\"狮子王AI校园防霸凌解决方案(1)_20251128154736A020.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/狮子王AI校园防霸凌解决方案(1)_20251128154736A020.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":4164766,\\\"metadata\\\":null,\\\"uid\\\":1764316057322,\\\"status\\\":\\\"success\\\"}]\",\"reviewState\":1,\"schoolId\":21}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:48:08', 78); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1249, 21, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '15202903075', NULL, '/course/batchReview', '127.0.0.1', '', '{\"courseIds\":[33],\"params\":{},\"reviewDesc\":\"\",\"reviewState\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:48:22', 67); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1250, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"createBy\":\"1\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":1,\"examTime\":19,\"examTitle\":\"t1\",\"fullMark\":0,\"id\":10024,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"passMark\":80,\"remark\":\"\",\"schId\":1,\"singleMark\":0,\"singleNum\":0,\"status\":0,\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 15:48:42\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:48:42', 201); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1251, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":101,\"content\":\"

11

\",\"id\":612,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:52:22\"},{\"chapterId\":138,\"chapterType\":102,\"content\":\"\",\"id\":613,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:52:22\"},{\"chapterId\":138,\"chapterType\":2,\"content\":\"\",\"id\":614,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:52:22\"},{\"chapterId\":138,\"chapterType\":1,\"content\":\"\",\"id\":615,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:52:22\"},{\"chapterId\":138,\"chapterType\":7,\"content\":\"\",\"id\":616,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:52:22\"},{\"chapterId\":138,\"chapterType\":9,\"content\":\"{\\\"id\\\":64,\\\"name\\\":\\\"第一章 红色展厅介绍\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/%E7%AC%AC%E4%B8%80%E7%AB%A0%E7%BA%A2%E8%89%B2%E8%99%9A%E6%8B%9F%E5%B1%95%E9%A6%86_20251128114310A008/index.html\\\",\\\"size\\\":146428201,\\\"type\\\":\\\"第一章 红色展厅介绍\\\",\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-28 11:45:32\\\",\\\"updateBy\\\":\\\"133\\\",\\\"updateTime\\\":\\\"2025-11-28 12:00:53\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\\\",\\\"description\\\":\\\"

哈哈哈哈

\\\",\\\"viewCount\\\":3,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"index.html\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\\\\\",\\\\\\\"originalName\\\\\\\":\\\\\\\"第一章红色虚拟展馆.zip\\\\\\\",\\\\\\\"size\\\\\\\":146428201,\\\\\\\"metadata\\\\\\\":\\\\\\\"virtualSimulation\\\\\\\",\\\\\\\"uid\\\\\\\":1764301392734,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":1,\\\"typeId\\\":9,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"1\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"虚拟仿真展馆\\\",\\\"ref', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 15:52:23', 1702); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1252, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":9,\"params\":{},\"resourceId\":64}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 15:52:23', 36); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1253, 1, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-28 15:52:52\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":1,\"examTime\":15,\"examTitle\":\"121212\",\"fullMark\":0,\"id\":10025,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"passMark\":10,\"remark\":\"\",\"schId\":1,\"singleMark\":0,\"singleNum\":0,\"status\":0,\"updateBy\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:52:52', 168); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1254, 1, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10025,\"params\":{},\"questionId\":10353,\"questionMarks\":20,\"questionSortBy\":1},{\"examId\":10025,\"params\":{},\"questionId\":10351,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10025,\"params\":{},\"questionId\":10350,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10025,\"params\":{},\"questionId\":10347,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10025,\"params\":{},\"questionId\":10346,\"questionMarks\":5,\"questionSortBy\":5},{\"examId\":10025,\"params\":{},\"questionId\":10339,\"questionMarks\":5,\"questionSortBy\":6},{\"examId\":10025,\"params\":{},\"questionId\":10338,\"questionMarks\":5,\"questionSortBy\":7},{\"examId\":10025,\"params\":{},\"questionId\":10337,\"questionMarks\":5,\"questionSortBy\":8},{\"examId\":10025,\"params\":{},\"questionId\":10336,\"questionMarks\":5,\"questionSortBy\":9},{\"examId\":10025,\"params\":{},\"questionId\":10335,\"questionMarks\":5,\"questionSortBy\":10},{\"examId\":10025,\"params\":{},\"questionId\":10343,\"questionMarks\":5,\"questionSortBy\":11},{\"examId\":10025,\"params\":{},\"questionId\":10342,\"questionMarks\":5,\"questionSortBy\":12},{\"examId\":10025,\"params\":{},\"questionId\":10341,\"questionMarks\":5,\"questionSortBy\":13},{\"examId\":10025,\"params\":{},\"questionId\":10340,\"questionMarks\":5,\"questionSortBy\":14},{\"examId\":10025,\"params\":{},\"questionId\":10329,\"questionMarks\":11,\"questionSortBy\":15},{\"examId\":10025,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":16},{\"examId\":10025,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":17}],\"createBy\":\"1\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":1,\"examTime\":15,\"examTitle\":\"121212\",\"fullMark\":100,\"id\":10025,\"multipleMark\":35,\"multipleNum\":7,\"params\":{},\"passMark\":10,\"remark\":\"\",\"schId\":1,\"singleMark\":65,\"singleNum\":10,\"status\":100,\"updateBy\":\"1\",\"updateTime\":\"2025-11-28 15:53:17\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:53:17', 264); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1255, 1, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, 'admin', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10026,\"params\":{},\"questionId\":10353,\"questionMarks\":20,\"questionSortBy\":1},{\"examId\":10026,\"params\":{},\"questionId\":10351,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10026,\"params\":{},\"questionId\":10350,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10026,\"params\":{},\"questionId\":10347,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10026,\"params\":{},\"questionId\":10346,\"questionMarks\":5,\"questionSortBy\":5},{\"examId\":10026,\"params\":{},\"questionId\":10339,\"questionMarks\":5,\"questionSortBy\":6},{\"examId\":10026,\"params\":{},\"questionId\":10338,\"questionMarks\":5,\"questionSortBy\":7},{\"examId\":10026,\"params\":{},\"questionId\":10337,\"questionMarks\":5,\"questionSortBy\":8},{\"examId\":10026,\"params\":{},\"questionId\":10336,\"questionMarks\":5,\"questionSortBy\":9},{\"examId\":10026,\"params\":{},\"questionId\":10335,\"questionMarks\":5,\"questionSortBy\":10},{\"examId\":10026,\"params\":{},\"questionId\":10343,\"questionMarks\":5,\"questionSortBy\":11},{\"examId\":10026,\"params\":{},\"questionId\":10342,\"questionMarks\":5,\"questionSortBy\":12},{\"examId\":10026,\"params\":{},\"questionId\":10341,\"questionMarks\":5,\"questionSortBy\":13},{\"examId\":10026,\"params\":{},\"questionId\":10340,\"questionMarks\":5,\"questionSortBy\":14},{\"examId\":10026,\"params\":{},\"questionId\":10329,\"questionMarks\":11,\"questionSortBy\":15},{\"examId\":10026,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":16},{\"examId\":10026,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":17}],\"createBy\":\"1\",\"createTime\":\"2025-11-28 15:54:04\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":1,\"examTime\":20,\"examTitle\":\"asdfasfd\",\"fullMark\":100,\"id\":10026,\"multipleMark\":35,\"multipleNum\":7,\"params\":{},\"passMark\":10,\"remark\":\"\",\"schId\":1,\"singleMark\":65,\"singleNum\":10,\"status\":100,\"updateBy\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 15:54:04', 203); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1256, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":101,\"content\":\"

11

\",\"id\":612,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:56:28\"},{\"chapterId\":138,\"chapterType\":102,\"content\":\"\",\"id\":613,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:56:28\"},{\"chapterId\":138,\"chapterType\":2,\"content\":\"\",\"id\":614,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:56:28\"},{\"chapterId\":138,\"chapterType\":1,\"content\":\"\",\"id\":615,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:56:28\"},{\"chapterId\":138,\"chapterType\":7,\"content\":\"\",\"id\":616,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:56:29\"},{\"chapterId\":138,\"chapterType\":9,\"content\":\"{\\\"id\\\":64,\\\"name\\\":\\\"第一章 红色展厅介绍\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/%E7%AC%AC%E4%B8%80%E7%AB%A0%E7%BA%A2%E8%89%B2%E8%99%9A%E6%8B%9F%E5%B1%95%E9%A6%86_20251128114310A008/index.html\\\",\\\"size\\\":146428201,\\\"type\\\":\\\"第一章 红色展厅介绍\\\",\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-28 11:45:32\\\",\\\"updateBy\\\":\\\"133\\\",\\\"updateTime\\\":\\\"2025-11-28 12:00:53\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\\\",\\\"description\\\":\\\"

哈哈哈哈

\\\",\\\"viewCount\\\":3,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"index.html\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\\\\\",\\\\\\\"originalName\\\\\\\":\\\\\\\"第一章红色虚拟展馆.zip\\\\\\\",\\\\\\\"size\\\\\\\":146428201,\\\\\\\"metadata\\\\\\\":\\\\\\\"virtualSimulation\\\\\\\",\\\\\\\"uid\\\\\\\":1764301392734,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":1,\\\"typeId\\\":9,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"1\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"虚拟仿真展馆\\\",\\\"ref', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 15:56:30', 1634); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1257, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":9,\"params\":{},\"resourceId\":64}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 15:56:30', 27); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1258, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":101,\"content\":\"

11

\",\"id\":612,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:57:08\"},{\"chapterId\":138,\"chapterType\":102,\"content\":\"\",\"id\":613,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:57:08\"},{\"chapterId\":138,\"chapterType\":2,\"content\":\"\",\"id\":614,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:57:08\"},{\"chapterId\":138,\"chapterType\":1,\"content\":\"\",\"id\":615,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:57:08\"},{\"chapterId\":138,\"chapterType\":7,\"content\":\"\",\"id\":616,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:57:08\"},{\"chapterId\":138,\"chapterType\":9,\"content\":\"{\\\"id\\\":64,\\\"name\\\":\\\"第一章 红色展厅介绍\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/%E7%AC%AC%E4%B8%80%E7%AB%A0%E7%BA%A2%E8%89%B2%E8%99%9A%E6%8B%9F%E5%B1%95%E9%A6%86_20251128114310A008/index.html\\\",\\\"size\\\":146428201,\\\"type\\\":\\\"第一章 红色展厅介绍\\\",\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-28 11:45:32\\\",\\\"updateBy\\\":\\\"133\\\",\\\"updateTime\\\":\\\"2025-11-28 12:00:53\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\\\",\\\"description\\\":\\\"

哈哈哈哈

\\\",\\\"viewCount\\\":3,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"index.html\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\\\\\",\\\\\\\"originalName\\\\\\\":\\\\\\\"第一章红色虚拟展馆.zip\\\\\\\",\\\\\\\"size\\\\\\\":146428201,\\\\\\\"metadata\\\\\\\":\\\\\\\"virtualSimulation\\\\\\\",\\\\\\\"uid\\\\\\\":1764301392734,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":1,\\\"typeId\\\":9,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"1\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"虚拟仿真展馆\\\",\\\"ref', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 15:57:10', 1838); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1259, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":101,\"content\":\"

11

\",\"id\":612,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:58:04\"},{\"chapterId\":138,\"chapterType\":102,\"content\":\"\",\"id\":613,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:58:04\"},{\"chapterId\":138,\"chapterType\":2,\"content\":\"\",\"id\":614,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:58:04\"},{\"chapterId\":138,\"chapterType\":1,\"content\":\"\",\"id\":615,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:58:05\"},{\"chapterId\":138,\"chapterType\":7,\"content\":\"\",\"id\":616,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:58:05\"},{\"chapterId\":138,\"chapterType\":9,\"content\":\"{\\\"id\\\":64,\\\"name\\\":\\\"第一章 红色展厅介绍\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/%E7%AC%AC%E4%B8%80%E7%AB%A0%E7%BA%A2%E8%89%B2%E8%99%9A%E6%8B%9F%E5%B1%95%E9%A6%86_20251128114310A008/index.html\\\",\\\"size\\\":146428201,\\\"type\\\":\\\"第一章 红色展厅介绍\\\",\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-28 11:45:32\\\",\\\"updateBy\\\":\\\"133\\\",\\\"updateTime\\\":\\\"2025-11-28 12:00:53\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\\\",\\\"description\\\":\\\"

哈哈哈哈

\\\",\\\"viewCount\\\":3,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"index.html\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\\\\\",\\\\\\\"originalName\\\\\\\":\\\\\\\"第一章红色虚拟展馆.zip\\\\\\\",\\\\\\\"size\\\\\\\":146428201,\\\\\\\"metadata\\\\\\\":\\\\\\\"virtualSimulation\\\\\\\",\\\\\\\"uid\\\\\\\":1764301392734,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":1,\\\"typeId\\\":9,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"1\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"虚拟仿真展馆\\\",\\\"ref', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 15:58:06', 1620); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1260, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:59:50\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 15:59:51\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 15:59:52', 1613); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1261, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 15:59:52', 34); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1262, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 16:02:17\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 16:02:17\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 16:02:19', 1613); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1263, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 16:02:19', 33); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1264, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 16:02:23\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 16:02:23\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 16:02:24', 1616); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1265, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 16:02:24', 31); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1266, 21, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, '15202903075', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":37,\"address\":\"\",\"classType\":1,\"courseId\":34,\"courseName\":\"中硕大学第一个课程\",\"createBy\":\"133\",\"createTime\":\"2025-11-28 16:36:18\",\"endDate\":\"2025-12-31\",\"id\":9,\"isDel\":0,\"params\":{},\"schId\":21,\"startDate\":\"2025-11-01\",\"state\":1,\"status\":2},\"orgIds\":[30],\"teacherIds\":[134],\"weekList\":[{\"classSchId\":9,\"endTime\":\"18:00\",\"params\":{},\"startTime\":\"16:50\",\"weekInfo\":5},{\"classSchId\":9,\"endTime\":\"12:00\",\"params\":{},\"startTime\":\"10:00\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":9}', 0, NULL, '2025-11-28 16:36:19', 652); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1267, 21, '上课信息', 3, 'com.study.teaching.controller.BaseClassSchController.remove()', 'DELETE', 1, '15202903075', NULL, '/classSchedule/9', '0:0:0:0:0:0:0:1%0', '', '[9]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 16:40:59', 646); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1268, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"planId\":113}],\"createBy\":\"1\",\"createTime\":\"2025-11-28 16:41:04\",\"examAddress\":\"asdfsadf\",\"examEndTime\":\"2025-11-01 09:00:00\",\"examInfoId\":10026,\"examStartTime\":\"2025-11-01 08:30:00\",\"examTitle\":\"aaaa\",\"id\":113,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 16:41:04', 428); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1269, 21, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, '15202903075', NULL, '/classSchedule/createComplete', '0:0:0:0:0:0:0:1%0', '', '{\"classSchedule\":{\"academicId\":37,\"address\":\"\",\"classType\":1,\"courseId\":35,\"courseName\":\"中硕大学第一课\",\"createBy\":\"133\",\"createTime\":\"2025-11-28 16:42:06\",\"endDate\":\"2025-12-31\",\"id\":10,\"isDel\":0,\"params\":{},\"schId\":21,\"startDate\":\"2025-11-01\",\"state\":1,\"status\":2},\"orgIds\":[30],\"teacherIds\":[134],\"weekList\":[{\"classSchId\":10,\"endTime\":\"12:00\",\"params\":{},\"startTime\":\"10:00\",\"weekInfo\":1},{\"classSchId\":10,\"endTime\":\"18:50\",\"params\":{},\"startTime\":\"16:50\",\"weekInfo\":5}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":10}', 0, NULL, '2025-11-28 16:42:06', 2305); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1270, 21, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, '15202903075', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":141,\"chapterType\":101,\"content\":\"

你好,我是教学引导

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":645,\"params\":{},\"schoolId\":21},{\"chapterId\":141,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"id\":646,\"params\":{},\"schoolId\":21},{\"chapterId\":141,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142124231,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"s', '{\"msg\":\"批量处理失败: 课程已开始或结束!\",\"code\":500}', 0, NULL, '2025-11-28 16:42:48', 160); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1271, 21, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, '15202903075', NULL, '/classSchedule/createComplete', '0:0:0:0:0:0:0:1%0', '', '{\"classSchedule\":{\"academicId\":37,\"address\":\"\",\"classType\":1,\"courseId\":36,\"courseName\":\"中硕大学第2课\",\"createBy\":\"133\",\"createTime\":\"2025-11-28 16:44:25\",\"endDate\":\"2025-12-31\",\"id\":11,\"isDel\":0,\"params\":{},\"schId\":21,\"startDate\":\"2025-11-01\",\"state\":1,\"status\":2},\"orgIds\":[30],\"teacherIds\":[134],\"weekList\":[{\"classSchId\":11,\"endTime\":\"12:00\",\"params\":{},\"startTime\":\"10:00\",\"weekInfo\":1},{\"classSchId\":11,\"endTime\":\"16:00\",\"params\":{},\"startTime\":\"14:00\",\"weekInfo\":2}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":11}', 0, NULL, '2025-11-28 16:44:26', 2581); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1272, 21, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, '15202903075', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":143,\"chapterType\":101,\"content\":\"

你好,我是教学引导

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":667,\"params\":{},\"schoolId\":21},{\"chapterId\":143,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"id\":668,\"params\":{},\"schoolId\":21},{\"chapterId\":143,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142124231,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"s', '{\"msg\":\"批量处理失败: 课程已开始或结束!\",\"code\":500}', 0, NULL, '2025-11-28 16:53:16', 162); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1273, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"planId\":114}],\"createBy\":\"1\",\"createTime\":\"2025-11-28 16:54:58\",\"examAddress\":\"1212\",\"examEndTime\":\"2025-11-01 09:00:00\",\"examInfoId\":10026,\"examStartTime\":\"2025-11-01 08:30:00\",\"examTitle\":\"asdfsadf\",\"id\":114,\"params\":{},\"schId\":1}', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\examine\\BaseExamStudentMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_exam_student(sch_id, plan_id, student_id, exam_full_mark, exam_pass_mark, student_mark, start_exam_time, end_exam_time, use_times, create_by, create_time, update_by, update_time, remark) values\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 \'\' 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 \'\' at line 1', '2025-11-28 16:54:58', 802); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1274, 21, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, '15202903075', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":37,\"address\":\"\",\"classType\":1,\"courseId\":37,\"courseName\":\"中硕大学第三课\",\"createBy\":\"133\",\"createTime\":\"2025-11-28 17:00:37\",\"endDate\":\"2025-12-31\",\"id\":12,\"isDel\":0,\"params\":{},\"schId\":21,\"startDate\":\"2025-12-02\",\"state\":1,\"status\":2},\"orgIds\":[30],\"teacherIds\":[134],\"weekList\":[{\"classSchId\":12,\"endTime\":\"14:00\",\"params\":{},\"startTime\":\"12:00\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":12}', 0, NULL, '2025-11-28 17:00:37', 2067); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1275, 21, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, '15202903075', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":145,\"chapterType\":101,\"content\":\"

你好,我是教学引导

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":689,\"params\":{},\"schoolId\":21,\"updateTime\":\"2025-11-28 17:01:01\"},{\"chapterId\":145,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"id\":690,\"params\":{},\"schoolId\":21,\"updateTime\":\"2025-11-28 17:01:01\"},{\"chapterId\":145,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 17:01:03', 2356); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1276, 21, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, '15202903075', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":145,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":145,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":145,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":145,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":145,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3}', 0, NULL, '2025-11-28 17:01:03', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1277, 21, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, '15202903075', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":145,\"chapterType\":101,\"content\":\"

你好,我是教学引导1111

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":689,\"params\":{},\"schoolId\":21,\"updateTime\":\"2025-11-28 17:01:35\"},{\"chapterId\":145,\"chapterType\":102,\"content\":\"

你好,我是学习指引

\\\"bg1_20251128150329A013.jpg\\\"

\",\"id\":690,\"params\":{},\"schoolId\":21,\"updateTime\":\"2025-11-28 17:01:35\"},{\"chapterId\":145,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 17:01:37', 2342); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1278, 21, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, '15202903075', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":145,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":145,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":145,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":145,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":145,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":145,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 17:01:37', 27); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1279, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导222

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:01:53\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"


\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:01:54\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142124231,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":2,\\\"typeId\\\":2,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"1,2\\\",\\\"approvalState\\\":2,\\\"state\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 17:01:55', 1534); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1280, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 17:01:55', 28); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1281, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导222

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"

\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:01:59\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"


\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:01:59\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142124231,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":2,\\\"typeId\\\":2,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"1,2\\\",\\\"approvalState\\\":2,\\\"state\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 17:02:01', 1529); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1282, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 17:02:01', 27); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1283, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导222

\\\"tx_20251128150302A012.png\\\"\\\"微信图片_20251119121159_222_64_20251128154645A019.jpg\\\"



\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:02:22\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"


\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:02:22\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142124231,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":2,\\\"typeId\\\":2,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"1,2\\\",\\\"appro', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 17:02:23', 1525); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1284, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 17:02:23', 27); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1285, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导222

\\\"tx_20251128150302A012.png\\\"



\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:02:30\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"


\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:02:30\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142124231,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":2,\\\"typeId\\\":2,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"1,2\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"视频\\\",\\\"referenceCount\\\":5,\\\"createTimeI', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 17:02:32', 1531); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1286, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 17:02:32', 27); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1287, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"planId\":115}],\"createBy\":\"1\",\"createTime\":\"2025-11-28 17:03:19\",\"examAddress\":\"aaaa\",\"examEndTime\":\"2025-11-29 10:15:00\",\"examInfoId\":10026,\"examStartTime\":\"2025-11-29 09:30:00\",\"examTitle\":\"asdfsadfsadf\",\"id\":115,\"params\":{},\"schId\":1}', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\examine\\BaseExamStudentMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_exam_student(sch_id, plan_id, student_id, exam_full_mark, exam_pass_mark, student_mark, start_exam_time, end_exam_time, use_times, create_by, create_time, update_by, update_time, remark) values\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 \'\' 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 \'\' at line 1', '2025-11-28 17:03:20', 899); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1288, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"planId\":116}],\"createBy\":\"1\",\"createTime\":\"2025-11-28 17:03:27\",\"examAddress\":\"aaaa\",\"examEndTime\":\"2025-11-29 10:15:00\",\"examInfoId\":10026,\"examStartTime\":\"2025-11-29 09:30:00\",\"examTitle\":\"asdfsadfsadf\",\"id\":116,\"params\":{},\"schId\":1}', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\examine\\BaseExamStudentMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_exam_student(sch_id, plan_id, student_id, exam_full_mark, exam_pass_mark, student_mark, start_exam_time, end_exam_time, use_times, create_by, create_time, update_by, update_time, remark) values\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 \'\' 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 \'\' at line 1', '2025-11-28 17:03:27', 443); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1289, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"planId\":117}],\"createBy\":\"1\",\"createTime\":\"2025-11-28 17:06:25\",\"examAddress\":\"asdfsadf\",\"examEndTime\":\"2025-12-01 10:00:00\",\"examInfoId\":10025,\"examStartTime\":\"2025-12-01 08:30:00\",\"examTitle\":\"sadfsdf\",\"id\":117,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 17:06:26', 573); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1290, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":101,\"content\":\"

11

\",\"id\":612,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:12:02\"},{\"chapterId\":138,\"chapterType\":102,\"content\":\"\",\"id\":613,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:12:02\"},{\"chapterId\":138,\"chapterType\":2,\"content\":\"\",\"id\":614,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:12:02\"},{\"chapterId\":138,\"chapterType\":1,\"content\":\"\",\"id\":615,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:12:02\"},{\"chapterId\":138,\"chapterType\":7,\"content\":\"{\\\"id\\\":60,\\\"name\\\":\\\"测试展馆111111111111\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/26/%E6%80%9D%E6%83%B3%E9%81%93%E5%BE%B7%E4%B8%8E%E6%B3%95%E6%B2%BB-%E7%AC%AC%E4%B8%80%E7%AB%A0-%E7%AC%AC%E4%B8%80%E8%8A%82_20251126175211A034/index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"html\\\",\\\"source\\\":\\\"系统内置\\\"}\",\"id\":616,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:12:02\"},{\"chapterId\":138,\"chapterType\":9,\"content\":\"{\\\"id\\\":64,\\\"name\\\":\\\"第一章 红色展厅介绍\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/%E7%AC%AC%E4%B8%80%E7%AB%A0%E7%BA%A2%E8%89%B2%E8%99%9A%E6%8B%9F%E5%B1%95%E9%A6%86_20251128114310A008/index.html\\\",\\\"size\\\":146428201,\\\"type\\\":\\\"第一章 红色展厅介绍\\\",\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-28 11:45:32\\\",\\\"updateBy\\\":\\\"133\\\",\\\"updateTime\\\":\\\"2025-11-28 12:00:53\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\\\",\\\"description\\\":\\\"

哈哈哈哈

\\\",\\\"viewCount\\\":3,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"index.html\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\\\\\",\\\\\\\"originalName\\\\\\\":\\\\\\\"第一章红色虚拟展馆.zip\\\\\\\",\\\\\\\"size\\\\\\\":146428201,\\\\\\\"metadata\\\\\\\":\\\\\\\"virtualSimulation\\\\\\\",\\\\\\\"uid\\\\\\\":1764301392734,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":1,\\\"typeId\\\":9,\\\"stage\\\":1,\\\"ta', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 17:12:03', 1675); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1291, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":7,\"params\":{},\"resourceId\":60},{\"chapterId\":138,\"chapterType\":9,\"params\":{},\"resourceId\":64}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2025-11-28 17:12:04', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1292, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导222

\\\"tx_20251128150302A012.png\\\"



\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:17:15\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"


\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:17:15\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142124231,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":2,\\\"typeId\\\":2,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"1,2\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"视频\\\",\\\"referenceCount\\\":5,\\\"createTimeI', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 17:17:16', 1907); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1293, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 17:17:16', 27); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1294, 21, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, '15202903075', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":37,\"baseExamPlanClassList\":[{\"classId\":30,\"deptCode\":\"bj001\",\"deptId\":30,\"deptName\":\"2025思政一班\",\"params\":{},\"planId\":118}],\"createBy\":\"133\",\"createTime\":\"2025-11-28 17:29:57\",\"examAddress\":\"12121212\",\"examEndTime\":\"2025-12-02 10:00:00\",\"examInfoId\":10022,\"examStartTime\":\"2025-12-02 08:30:00\",\"examTitle\":\"121212\",\"id\":118,\"params\":{},\"schId\":21}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-11-28 17:29:58', 404); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1295, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":101,\"content\":\"

11

\",\"id\":612,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:34:08\"},{\"chapterId\":138,\"chapterType\":102,\"content\":\"\",\"id\":613,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:34:09\"},{\"chapterId\":138,\"chapterType\":2,\"content\":\"\",\"id\":614,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:34:09\"},{\"chapterId\":138,\"chapterType\":1,\"content\":\"\",\"id\":615,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-11-28 17:34:10\"},{\"chapterId\":138,\"chapterType\":7,\"content\":\"{\\\"id\\\":60,\\\"name\\\":\\\"测试展馆111111111111\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/26/%E6%80%9D%E6%83%B3%E9%81%93%E5%BE%B7%E4%B8%8E%E6%B3%95%E6%B2%BB-%E7%AC%AC%E4%B8%80%E7%AB%A0-%E7%AC%AC%E4%B8%80%E8%8A%82_20251126175211A034/index.html\\\",\\\"size\\\":19729476,\\\"type\\\":\\\"html\\\",\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 17:52:16\\\",\\\"updateBy\\\":null,\\\"updateTime\\\":null,\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126175139A033.png\\\",\\\"description\\\":\\\"

测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111

\\\",\\\"viewCount\\\":0,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"index.html\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/panorama/2025/11/26/思想道德与法治-第一章-第一节_20251126175211A034/index.html\\\\\\\",\\\\\\\"originalName\\\\\\\":\\\\\\\"思想道德与法治-第一章-第一节.zip\\\\\\\",\\\\\\\"size\\\\\\\":19729476,\\\\\\\"metadata\\\\\\\":\\\\\\\"panorama\\\\\\\",\\\\\\\"uid\\\\\\\":1764150732088,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":2,\\\"typeId\\\":7,\\\"stage\\\":3,\\\"tagIds\\\":\\\"2\\\",\\\"premiumTypes\\\":\\\"\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"全景\\\",\\\"referenceCount\\\":1,\\\"', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-11-28 17:34:12', 3468); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1296, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":138,\"chapterType\":7,\"params\":{},\"resourceId\":60},{\"chapterId\":138,\"chapterType\":9,\"params\":{},\"resourceId\":64}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-11-28 17:34:12', 34); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1297, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"planId\":119}],\"createBy\":\"1\",\"createTime\":\"2025-12-01 09:43:58\",\"examAddress\":\"1212\",\"examEndTime\":\"2025-12-02 10:00:00\",\"examInfoId\":1,\"examStartTime\":\"2025-12-02 09:15:00\",\"examTitle\":\"12\",\"id\":119,\"params\":{},\"schId\":1}', NULL, 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 \'\' at line 1\r\n### The error may exist in file [D:\\ws\\school-mgr\\StudyCloud\\study-common\\study-common-mapper\\target\\classes\\mapper\\examine\\BaseExamStudentMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into base_exam_student(sch_id, plan_id, student_id, exam_full_mark, exam_pass_mark, student_mark, start_exam_time, end_exam_time, use_times, create_by, create_time, update_by, update_time, remark) values\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 \'\' 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 \'\' at line 1', '2025-12-01 09:43:59', 899); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1298, 17, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, '13488103555', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":1,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/12/01/ScreenShot_2025-11-28_101830_689_20251201095441A001.png\",\"createBy\":\"123\",\"createTime\":\"2025-12-01 09:56:17\",\"description\":\"

咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量

咱们工人有力量

咱们工人有力量

咱们工人有力量

咱们工人有力量

咱们工人有力量

咱们工人有力量

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"第14周作业_20251201095611A002.pdf\\\",\\\"url\\\":\\\"/statics/2025/12/01/第14周作业_20251201095611A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":229144,\\\"metadata\\\":null,\\\"uid\\\":1764554171945,\\\"status\\\":\\\"success\\\"}]\",\"id\":68,\"name\":\"咱们工人有力量\",\"params\":{},\"premiumTypes\":\"3\",\"schId\":17,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":4,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"1,2,3\",\"typeId\":1,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/12/01/ScreenShot_2025-11-28_101830_689_20251201095441A001.png\",\"createBy\":\"123\",\"createTime\":\"2025-12-01 09:56:17\",\"description\":\"

咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量

咱们工人有力量

咱们工人有力量

咱们工人有力量

咱们工人有力量

咱们工人有力量

咱们工人有力量

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"第14周作业_20251201095611A002.pdf\\\",\\\"url\\\":\\\"/statics/2025/12/01/第14周作业_20251201095611A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":229144,\\\"metadata\\\":null,\\\"uid\\\":1764554171945,\\\"status\\\":\\\"success\\\"}]\",\"id\":68,\"name\":\"咱们工人有力量\",\"params\":{},\"premiumTypes\":\"3\",\"schId\":17,\"source\":\"1\",\"stage\":4,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"1,2,3\",\"typeId\":1,\"viewCount\":0}}', 0, NULL, '2025-12-01 09:56:18', 226); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1299, 17, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, '13488103555', NULL, '/resource/approve', '0:0:0:0:0:0:0:1%0', '', '{\"approvalAdvice\":\"是\",\"approvalState\":2,\"approverId\":123,\"idList\":[68],\"params\":{},\"sysAndCurrentSchool\":false}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"是\",\"approvalState\":2,\"approverId\":123,\"idList\":[68],\"params\":{},\"sysAndCurrentSchool\":false}}', 0, NULL, '2025-12-01 09:56:38', 301); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1300, 17, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, '13488103555', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalAdvice\":\"是\",\"approvalState\":1,\"approverId\":123,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/12/01/ScreenShot_2025-11-28_101830_689_20251201095441A001.png\",\"createBy\":\"123\",\"createTime\":\"2025-12-01 09:56:18\",\"description\":\"

咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"第14周作业_20251201095611A002.pdf\\\",\\\"url\\\":\\\"/statics/2025/12/01/第14周作业_20251201095611A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":229144,\\\"metadata\\\":null,\\\"uid\\\":1764554171945,\\\"status\\\":\\\"success\\\"}]\",\"id\":68,\"isDel\":0,\"name\":\"咱们工人有力量\",\"params\":{},\"premiumTypes\":\"3,4\",\"referenceCount\":0,\"schId\":17,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":4,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"1,2,3\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"123\",\"updateTime\":\"2025-12-01 10:02:00\",\"viewCount\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"是\",\"approvalState\":1,\"approverId\":123,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/12/01/ScreenShot_2025-11-28_101830_689_20251201095441A001.png\",\"createBy\":\"123\",\"createTime\":\"2025-12-01 09:56:18\",\"description\":\"

咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量咱们工人有力量

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"第14周作业_20251201095611A002.pdf\\\",\\\"url\\\":\\\"/statics/2025/12/01/第14周作业_20251201095611A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":229144,\\\"metadata\\\":null,\\\"uid\\\":1764554171945,\\\"status\\\":\\\"success\\\"}]\",\"id\":68,\"isDel\":0,\"name\":\"咱们工人有力量\",\"params\":{},\"premiumTypes\":\"3,4\",\"referenceCount\":0,\"schId\":17,\"source\":\"1\",\"stage\":4,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"1,2,3\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"123\",\"updateTime\":\"2025-12-01 10:02:00\",\"viewCount\":2}}', 0, NULL, '2025-12-01 10:02:00', 111); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1301, 17, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, '13488103555', NULL, '/resource/approve', '127.0.0.1', '', '{\"approvalAdvice\":\"是\",\"approvalState\":2,\"approverId\":123,\"idList\":[68],\"params\":{},\"sysAndCurrentSchool\":false}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"是\",\"approvalState\":2,\"approverId\":123,\"idList\":[68],\"params\":{},\"sysAndCurrentSchool\":false}}', 0, NULL, '2025-12-01 10:02:29', 214); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1302, 17, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, '13488103555', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/12/01/ScreenShot_2025-11-09_222743_637_20251201100321A003.png\",\"createBy\":\"123\",\"createTime\":\"2025-12-01 10:04:29\",\"description\":\"

人民的名义

人民的名义

人民的名义

人民的名义

人民的名义

人民的名义

人民的名义

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"第14周作业_20251201100423A004.pdf\\\",\\\"url\\\":\\\"/statics/2025/12/01/第14周作业_20251201100423A004.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":229144,\\\"metadata\\\":null,\\\"uid\\\":1764554664004,\\\"status\\\":\\\"success\\\"}]\",\"id\":69,\"name\":\"人民的名义\",\"params\":{},\"premiumTypes\":\"4\",\"schId\":17,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":3,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"6\",\"typeId\":1,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/12/01/ScreenShot_2025-11-09_222743_637_20251201100321A003.png\",\"createBy\":\"123\",\"createTime\":\"2025-12-01 10:04:29\",\"description\":\"

人民的名义

人民的名义

人民的名义

人民的名义

人民的名义

人民的名义

人民的名义

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"第14周作业_20251201100423A004.pdf\\\",\\\"url\\\":\\\"/statics/2025/12/01/第14周作业_20251201100423A004.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":229144,\\\"metadata\\\":null,\\\"uid\\\":1764554664004,\\\"status\\\":\\\"success\\\"}]\",\"id\":69,\"name\":\"人民的名义\",\"params\":{},\"premiumTypes\":\"4\",\"schId\":17,\"source\":\"1\",\"stage\":3,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"6\",\"typeId\":1,\"viewCount\":0}}', 0, NULL, '2025-12-01 10:04:29', 111); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1303, 17, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, '13488103555', NULL, '/resource/approve', '0:0:0:0:0:0:0:1%0', '', '{\"approvalAdvice\":\"发电\",\"approvalState\":3,\"approverId\":123,\"idList\":[69],\"params\":{},\"sysAndCurrentSchool\":false}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"发电\",\"approvalState\":3,\"approverId\":123,\"idList\":[69],\"params\":{},\"sysAndCurrentSchool\":false}}', 0, NULL, '2025-12-01 10:04:44', 207); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1304, 17, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, '13488103555', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalAdvice\":\"发电\",\"approvalState\":1,\"approverId\":123,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/12/01/ScreenShot_2025-11-09_222743_637_20251201100321A003.png\",\"createBy\":\"123\",\"createTime\":\"2025-12-01 10:04:29\",\"description\":\"

人民的名义人民的名义人民的名义人民的名义人民的名义人民的名义人民的名义

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"第14周作业_20251201100423A004.pdf\\\",\\\"url\\\":\\\"/statics/2025/12/01/第14周作业_20251201100423A004.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":229144,\\\"metadata\\\":null,\\\"uid\\\":1764554664004,\\\"status\\\":\\\"success\\\"}]\",\"id\":69,\"isDel\":0,\"name\":\"人民的名义\",\"params\":{},\"premiumTypes\":\"4\",\"referenceCount\":0,\"schId\":17,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":3,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"6\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"123\",\"updateTime\":\"2025-12-01 10:05:01\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"发电\",\"approvalState\":1,\"approverId\":123,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/12/01/ScreenShot_2025-11-09_222743_637_20251201100321A003.png\",\"createBy\":\"123\",\"createTime\":\"2025-12-01 10:04:29\",\"description\":\"

人民的名义人民的名义人民的名义人民的名义人民的名义人民的名义人民的名义

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"第14周作业_20251201100423A004.pdf\\\",\\\"url\\\":\\\"/statics/2025/12/01/第14周作业_20251201100423A004.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":229144,\\\"metadata\\\":null,\\\"uid\\\":1764554664004,\\\"status\\\":\\\"success\\\"}]\",\"id\":69,\"isDel\":0,\"name\":\"人民的名义\",\"params\":{},\"premiumTypes\":\"4\",\"referenceCount\":0,\"schId\":17,\"source\":\"1\",\"stage\":3,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"6\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"123\",\"updateTime\":\"2025-12-01 10:05:01\",\"viewCount\":0}}', 0, NULL, '2025-12-01 10:05:01', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1305, 17, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, '13488103555', NULL, '/resource/approve', '127.0.0.1', '', '{\"approvalAdvice\":\"稍等\",\"approvalState\":2,\"approverId\":123,\"idList\":[69],\"params\":{},\"sysAndCurrentSchool\":false}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"稍等\",\"approvalState\":2,\"approverId\":123,\"idList\":[69],\"params\":{},\"sysAndCurrentSchool\":false}}', 0, NULL, '2025-12-01 10:05:16', 253); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1306, 21, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '15202903075', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

\",\"createBy\":\"133\",\"createTime\":\"2025-12-01 10:38:34\",\"id\":31,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-12-01 10:38:34\",\"schId\":21,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"杨发送的通知公告\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 10:38:37', 848); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1307, 21, '系统消息', 3, 'com.study.information.controller.BaseNoticeController.remove()', 'DELETE', 1, '15202903075', NULL, '/notice/31', '0:0:0:0:0:0:0:1%0', '', '[31]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 10:38:55', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1308, 21, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '15202903075', NULL, '/notice', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

\",\"createBy\":\"133\",\"createTime\":\"2025-12-01 10:39:35\",\"id\":32,\"msgState\":1,\"msgType\":2,\"params\":{},\"planSendTime\":\"2025-12-01 10:50:00\",\"publishTime\":\"2025-12-01 10:39:35\",\"schId\":21,\"sendScope\":1,\"sendState\":0,\"sendType\":2,\"title\":\"杨发送的通知公告\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 10:39:35', 78); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1309, 21, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '15202903075', NULL, '/notice', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

\",\"createBy\":\"133\",\"createTime\":\"2025-12-01 10:41:29\",\"id\":33,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-12-01 10:41:29\",\"schId\":21,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"王发送的通知公告\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 10:41:30', 626); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1310, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

文章指出,从严监督执纪要进一步到位。从严监督执纪是党的自我革命的利器。对违纪违法问题必须坚决处理,霹雳手段决不能少。在从严监督上,要把党内监督和人民监督结合起来,推动各类监督贯通协调。在从严执纪上,要严格标准,将党风党纪硬要求变为硬举措、让铁规矩长出铁牙齿,对不正之风和腐败现象露头就打、严肃查处,向全党释放一严到底、寸步不让的信号,形成有效的震慑效应。

\",\"createBy\":\"1\",\"createTime\":\"2025-12-01 10:44:37\",\"id\":34,\"msgCategory\":1,\"msgState\":0,\"msgType\":1,\"params\":{},\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"系统管理员发布的通知公告\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 10:44:37', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1311, 1, '系统消息', 2, 'com.study.information.controller.BaseSysMessageController.edit()', 'PUT', 1, 'admin', NULL, '/message', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

文章指出,从严监督执纪要进一步到位。从严监督执纪是党的自我革命的利器。对违纪违法问题必须坚决处理,霹雳手段决不能少。在从严监督上,要把党内监督和人民监督结合起来,推动各类监督贯通协调。在从严执纪上,要严格标准,将党风党纪硬要求变为硬举措、让铁规矩长出铁牙齿,对不正之风和腐败现象露头就打、严肃查处,向全党释放一严到底、寸步不让的信号,形成有效的震慑效应。

\",\"createBy\":\"1\",\"createTime\":\"2025-12-01 10:44:37\",\"creatorName\":\"超级管理员\",\"id\":34,\"isDel\":0,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-12-01 10:44:43\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"系统管理员发布的通知公告\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-01 10:44:43\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 10:44:46', 2340); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1312, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"actualSendTime\":\"2025-12-01 10:48:24\",\"content\":\"

\\\"6_维吾尔族服饰_20251201104810A002.png\\\"

新华社北京11月30日电 12月1日出版的第23期《求是》杂志将发表中共中央总书记、国家主席、中央军委主席习近平的重要文章《推进党的自我革命要做到“五个进一步到位”》

文章强调,自我革命是我们党跳出治乱兴衰历史周期率的第二个答案。从抓作风入手推进全面从严治党是新时代党的自我革命一条重要经验。围绕党的自我革命,思路要求都是明确的,关键在于抓落实要真正到位。

文章指出,对党的自我革命认识要进一步到位。现在,我们党肩负的中国式现代化建设任务十分繁重,面临的执政环境异常复杂,自我革命这根弦必须绷得更紧。我们党进行自我革命,刀刃向内、激浊扬清、刮骨疗毒,非但不会影响党的形象和威信,反而能够提高党的形象和威信;非但不会挫伤党员干部的积极性,反而能够更广泛更充分地调动党员干部的积极性;非但不会影响经济社会发展,反而能够为高质量发展提供坚强政治保证。

文章指出,党员干部增强党性要进一步到位。推进自我革命,必须固本培元、增强党性。重点是坚定理想信念,铸牢对党忠诚,厚植为民情怀,纯正道德品质,保持清正廉洁。要加强理论武装,坚守共产党人精神追求。积极投身中国式现代化建设实践,在干事创业中磨砺奋斗人生,在为民造福中升华道德境界。积极参加党内政治生活,乐于接受党组织教育和各方面监督。对照正反典型进行自我省察,以内无妄思保证外无妄动。选人用人,要加强党性鉴别,注重考察干部的境界格局和忠诚度廉洁度。

文章指出,权力规范运行要进一步到位。“四风”大多源于特权思想,腐败突出表现是以权谋私。党的自我革命重在治权。要通过持续努力,真正把权力关进制度的笼子,有效避免“牛栏关猫”、“纸笼禁虎”,最大限度减少权力寻租空间。党员干部要时刻牢记,我们一切权力都是人民赋予的,必须正确行使、对人民负责,党内不允许有特权思想、特权现象存在,更不允许出现利益集团、权势团体、特权阶层。从入党、当干部那一天起,就要敬畏人民、敬畏组织、敬畏法纪。

文章指出,从严监督执纪要进一步到位。从严监督执纪是党的自我革命的利器。对违纪违法问题必须坚决处理,霹雳手段决不能少。在从严监督上,要把党内监督和人民监督结合起来,推动各类监督贯通协调。在从严执纪上,要严格标准,将党风党纪硬要求变为硬举措、让铁规矩长出铁牙齿,对不正之风和腐败现象露头就打、严肃查处,向全党释放一严到底、寸步不让的信号,形成有效的震慑效应。

\",\"createBy\":\"1\",\"createTime\":\"2025-12-01 10:48:24\",\"hotspotCoverImgPath\":\"/statics/2025/12/01/bg1_20251201104530A001.jpeg\",\"hotspotSource\":\"网络\",\"id\":35,\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-12-01 10:48:24\",\"schId\":1,\"sendState\":1,\"sendType\":1,\"title\":\"系统管理员发布的思政热点\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 10:48:24', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1313, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

aaaaaaaa

\",\"createBy\":\"100\",\"createTime\":\"2025-12-01 10:58:13\",\"id\":36,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-12-01 10:58:13\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"aaaa\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 10:58:15', 1029); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1314, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, 'admin', NULL, '/messageRel/read/273', '0:0:0:0:0:0:0:1%0', '', '273', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 11:00:05', 111); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1315, 17, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, '13488103555', NULL, '/examInfo', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10027,\"params\":{},\"questionId\":10351,\"questionMarks\":5,\"questionSortBy\":1},{\"examId\":10027,\"params\":{},\"questionId\":10350,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10027,\"params\":{},\"questionId\":10347,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10027,\"params\":{},\"questionId\":10339,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10027,\"params\":{},\"questionId\":10346,\"questionMarks\":5,\"questionSortBy\":5},{\"examId\":10027,\"params\":{},\"questionId\":10338,\"questionMarks\":5,\"questionSortBy\":6},{\"examId\":10027,\"params\":{},\"questionId\":10337,\"questionMarks\":5,\"questionSortBy\":7},{\"examId\":10027,\"params\":{},\"questionId\":10336,\"questionMarks\":5,\"questionSortBy\":8},{\"examId\":10027,\"params\":{},\"questionId\":10335,\"questionMarks\":5,\"questionSortBy\":9}],\"createBy\":\"123\",\"createTime\":\"2025-12-01 11:11:32\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":1,\"examTime\":100,\"examTitle\":\"测试试卷2\",\"fullMark\":45,\"id\":10027,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"passMark\":30,\"remark\":\"212212\",\"schId\":17,\"singleMark\":45,\"singleNum\":9,\"status\":100,\"updateBy\":\"123\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 11:11:34', 426); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1316, 17, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, '13488103555', NULL, '/examPlan', '0:0:0:0:0:0:0:1%0', '', '{\"academicId\":33,\"baseExamPlanClassList\":[{\"classId\":25,\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\",\"params\":{},\"planId\":120},{\"classId\":26,\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\",\"params\":{},\"planId\":120}],\"createBy\":\"123\",\"createTime\":\"2025-12-01 11:13:01\",\"examAddress\":\"44444\",\"examEndTime\":\"2025-12-01 11:15:00\",\"examInfoId\":10027,\"examStartTime\":\"2025-12-01 11:00:00\",\"examTitle\":\"龙小孟的考试安排2\",\"id\":120,\"params\":{},\"schId\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 11:13:02', 612); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1317, 17, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, '13488103555', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"酸的\",\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10354},{\"description\":\"甜的\",\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10354},{\"description\":\"苦的\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10354},{\"description\":\"辣的\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10354}],\"createBy\":\"123\",\"createTime\":\"2025-12-01 11:34:06\",\"id\":10354,\"params\":{},\"questionAnswer\":\"B\",\"questionCourseName\":\"-\",\"questionDesc\":\"葡萄是什么味道的\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":17,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 11:34:06', 294); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1318, 1, '定时任务', 5, 'com.study.job.controller.SysJobController.export()', 'POST', 1, 'admin', NULL, '/job/export', '127.0.0.1', '', '{\"jobName\":\"\",\"pageSize\":\"10\",\"jobGroup\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-12-01 11:56:32', 2946); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1319, 17, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, '13488103555', NULL, '/examInfo', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10028,\"params\":{},\"questionId\":10343,\"questionMarks\":5,\"questionSortBy\":1},{\"examId\":10028,\"params\":{},\"questionId\":10342,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10028,\"params\":{},\"questionId\":10341,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10028,\"params\":{},\"questionId\":10340,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10028,\"params\":{},\"questionId\":10329,\"questionMarks\":11,\"questionSortBy\":5},{\"examId\":10028,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":6},{\"examId\":10028,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":7}],\"createBy\":\"123\",\"createTime\":\"2025-12-01 14:29:55\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":1,\"examTime\":30,\"examTitle\":\"测试试卷3\",\"fullMark\":35,\"id\":10028,\"multipleMark\":35,\"multipleNum\":7,\"params\":{},\"passMark\":50,\"remark\":\"33333\",\"schId\":17,\"singleMark\":0,\"singleNum\":0,\"status\":0,\"updateBy\":\"123\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 14:29:56', 245); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1320, 17, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, '13488103555', NULL, '/examInfo', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10028,\"params\":{},\"questionId\":10343,\"questionMarks\":5,\"questionSortBy\":1},{\"examId\":10028,\"params\":{},\"questionId\":10342,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10028,\"params\":{},\"questionId\":10341,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10028,\"params\":{},\"questionId\":10340,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10028,\"params\":{},\"questionId\":10329,\"questionMarks\":11,\"questionSortBy\":5},{\"examId\":10028,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":6},{\"examId\":10028,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":7}],\"createBy\":\"123\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":1,\"examTime\":30,\"examTitle\":\"测试试卷3\",\"fullMark\":35,\"id\":10028,\"multipleMark\":35,\"multipleNum\":7,\"params\":{},\"passMark\":50,\"remark\":\"33333\",\"schId\":17,\"singleMark\":0,\"singleNum\":0,\"status\":0,\"updateBy\":\"123\",\"updateTime\":\"2025-12-01 14:30:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 14:30:10', 308); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1321, 17, '基础试卷', 2, 'com.study.examine.controller.BaseExamInfoController.edit()', 'PUT', 1, '13488103555', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10028,\"params\":{},\"questionId\":10351,\"questionMarks\":5,\"questionSortBy\":1},{\"examId\":10028,\"params\":{},\"questionId\":10350,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10028,\"params\":{},\"questionId\":10347,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10028,\"params\":{},\"questionId\":10346,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10028,\"params\":{},\"questionId\":10339,\"questionMarks\":5,\"questionSortBy\":5},{\"examId\":10028,\"params\":{},\"questionId\":10343,\"questionMarks\":5,\"questionSortBy\":6},{\"examId\":10028,\"params\":{},\"questionId\":10342,\"questionMarks\":5,\"questionSortBy\":7},{\"examId\":10028,\"params\":{},\"questionId\":10341,\"questionMarks\":5,\"questionSortBy\":8},{\"examId\":10028,\"params\":{},\"questionId\":10340,\"questionMarks\":5,\"questionSortBy\":9},{\"examId\":10028,\"params\":{},\"questionId\":10329,\"questionMarks\":11,\"questionSortBy\":10},{\"examId\":10028,\"params\":{},\"questionId\":10322,\"questionMarks\":2,\"questionSortBy\":11},{\"examId\":10028,\"params\":{},\"questionId\":10319,\"questionMarks\":2,\"questionSortBy\":12}],\"createBy\":\"123\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":1,\"examTime\":30,\"examTitle\":\"测试试卷3\",\"fullMark\":60,\"id\":10028,\"multipleMark\":35,\"multipleNum\":7,\"params\":{},\"passMark\":50,\"remark\":\"33333\",\"schId\":17,\"singleMark\":25,\"singleNum\":5,\"status\":100,\"updateBy\":\"123\",\"updateTime\":\"2025-12-01 14:32:04\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 14:32:04', 309); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1322, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_homework,base_homework_student,base_homework_student_result\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 15:17:22', 2843); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1323, 17, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '13488103555', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"code\":\"P0001\",\"createBy\":\"13488103555\",\"deptClassInfoList\":[{\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\"},{\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\"}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"-\",\"email\":\"13478787878@qq.com\",\"joinTime\":\"2025-12-01\",\"nickName\":\"张大千\",\"params\":{},\"phoneNumber\":\"13478787878\",\"roleId\":140,\"roleIds\":[140],\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userId\":135,\"userName\":\"13478787878\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 15:17:32', 619); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1324, 17, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, '13488103555', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"P0003\",\"createBy\":\"13488103555\",\"deptClassInfoList\":[{\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\"},{\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\"}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"-\",\"email\":\"13689898989@qq.com\",\"joinTime\":\"2025-12-01\",\"nickName\":\"张伟\",\"params\":{},\"phoneNumber\":\"13689898989\",\"roleId\":140,\"roleIds\":[140],\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userId\":136,\"userName\":\"13689898989\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 15:18:19', 537); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1325, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"homework\",\"className\":\"BaseHomework\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1500,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:19\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":107,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1501,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:19\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":107,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Title\",\"columnComment\":\"作业名称\",\"columnId\":1502,\"columnName\":\"title\",\"columnType\":\"varchar(512)\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:19\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"textarea\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"title\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":107,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Instructions\",\"columnComment\":\"作业要求\",\"columnId\":1503,\"columnName\":\"instructions\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:19\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"instructions\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":tru', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 15:19:26', 1257); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1326, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"studentHomeWork\",\"className\":\"BaseHomeworkStudent\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"ID\",\"columnId\":1519,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:20\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":108,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"SchId\",\"columnComment\":\"学校ID\",\"columnId\":1520,\"columnName\":\"sch_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"schId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":2,\"superColumn\":false,\"tableId\":108,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"HomeworkId\",\"columnComment\":\"作业ID\",\"columnId\":1521,\"columnName\":\"homework_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"homeworkId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":true,\"sort\":3,\"superColumn\":false,\"tableId\":108,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"StudentId\",\"columnComment\":\"学生ID\",\"columnId\":1522,\"columnName\":\"student_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:20\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"isRequired\":\"1\",\"javaField\":\"st', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 15:20:18', 1117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1327, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"studentHomeWorkResult\",\"className\":\"BaseHomeworkStudentResult\",\"columns\":[{\"capJavaField\":\"Id\",\"columnComment\":\"ID\",\"columnId\":1536,\"columnName\":\"id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:21\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":109,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"HomeworkStudentId\",\"columnComment\":\"学生作业ID\",\"columnId\":1537,\"columnName\":\"homework_student_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"homeworkStudentId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":109,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionId\",\"columnComment\":\"问题主键\",\"columnId\":1538,\"columnName\":\"question_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"questionId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":109,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"StudentAnswer\",\"columnComment\":\"学生答案\",\"columnId\":1539,\"columnName\":\"student_answer\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:17:21\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaFie', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 15:21:09', 493); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1328, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_homework,base_homework_student,base_homework_student_result\"}', NULL, 0, NULL, '2025-12-01 15:21:19', 246); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1329, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_homework_question,base_homework_class\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 15:23:06', 770); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1330, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"homeWorkClass\",\"className\":\"BaseHomeworkClass\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1542,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:23:06\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":110,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"HomeworkId\",\"columnComment\":\"作业ID\",\"columnId\":1543,\"columnName\":\"homework_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:23:06\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"homeworkId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":110,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"ClassId\",\"columnComment\":\"班级ID\",\"columnId\":1544,\"columnName\":\"class_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:23:06\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"classId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":110,\"updateBy\":\"\",\"usableColumn\":false}],\"crud\":true,\"functionAuthor\":\"陕西研筑信息技术\",\"functionName\":\"作业班级关系\\n\",\"genPath\":\"/\",\"genType\":\"0\",\"moduleName\":\"teaching\",\"options\":\"{\\\"parentMenuId\\\":2014}\",\"packageName\":\"com.study.teaching\",\"params\":{\"parentMenuId\":2014},\"parentMenuId\":2014,\"sub\":false,\"tableComment\":\"作业班级关系表\\n\",\"tableId\":110,\"tableName\":\"base_homework_class\",\"tplCategory\":\"crud\",\"tplWebType\":\"\",\"tree\":false}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 15:24:32', 333); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1331, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"homeWorkQuestion\",\"className\":\"BaseHomeworkQuestion\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1545,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:23:06\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":true,\"insert\":true,\"isIncrement\":\"1\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":111,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"HomeworkId\",\"columnComment\":\"作业ID\",\"columnId\":1546,\"columnName\":\"homework_id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:23:06\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"homeworkId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":111,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionId\",\"columnComment\":\"问题主键\",\"columnId\":1547,\"columnName\":\"question_id\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:23:06\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"questionId\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":111,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"QuestionMarks\",\"columnComment\":\"问题分数\",\"columnId\":1548,\"columnName\":\"question_marks\",\"columnType\":\"int\",\"createBy\":\"admin\",\"createTime\":\"2025-12-01 15:23:06\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"questionMarks\",\"javaType\":\"Long\",\"list\":true,\"params\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 15:24:57', 439); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1332, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_homework,base_homework_student,base_homework_student_result,base_homework_class,base_homework_question\"}', NULL, 0, NULL, '2025-12-01 15:25:08', 251); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1333, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111龙小孟的测试消息11111

\",\"createBy\":\"1\",\"createTime\":\"2025-12-01 15:46:20\",\"id\":37,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-12-01 15:46:20\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"龙小孟的测试消息11111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 15:46:23', 2402); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1334, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":123,\"chapterType\":101,\"content\":\"


\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":700,\"params\":{},\"schoolId\":1},{\"chapterId\":123,\"chapterType\":102,\"content\":\"\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":701,\"params\":{},\"schoolId\":1},{\"chapterId\":123,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":702,\"params\":{},\"schoolId\":1},{\"chapterId\":123,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":703,\"params\":{},\"schoolId\":1},{\"chapterId\":123,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":704,\"params\":{},\"schoolId\":1},{\"chapterId\":123,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":705,\"params\":{},\"schoolId\":1},{\"chapterId\":123,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":706,\"params\":{},\"schoolId\":1},{\"chapterId\":123,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":707,\"params\":{},\"schoolId\":1},{\"chapterId\":123,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":708,\"params\":{},\"schoolId\":1},{\"chapterId\":123,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":709,\"params\":{},\"schoolId\":1},{\"chapterId\":123,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-12-01 15:59:39\",\"id\":710,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-12-01 15:59:40', 1015); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1335, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

龙小孟的测试消息222222222

龙小孟的测试消息222222222

龙小孟的测试消息222222222

\",\"createBy\":\"1\",\"createTime\":\"2025-12-01 16:07:44\",\"id\":38,\"msgCategory\":2,\"msgState\":1,\"msgType\":1,\"params\":{},\"planSendTime\":\"2025-12-01 16:20:00\",\"publishTime\":\"2025-12-01 16:07:44\",\"schId\":1,\"sendState\":0,\"sendType\":2,\"title\":\"龙小孟的测试消息222222222\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 16:07:44', 74); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1336, 17, '教师管理', 2, 'com.study.system.controller.SysUserController.editSecretKey()', 'PUT', 1, '13488103555', NULL, '/user/editSecretKey/136,135,131,127,126', '0:0:0:0:0:0:0:1%0', '', '[136,135,131,127,126]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 17:04:56', 1011); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1337, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"jobId\":100,\"misfirePolicy\":\"0\",\"params\":{},\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 17:09:28', 378); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1338, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"jobId\":100,\"misfirePolicy\":\"0\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 17:09:31', 223); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1339, 17, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, '13488103555', NULL, '/classSchedule/createComplete', '0:0:0:0:0:0:0:1%0', '', '{\"classSchedule\":{\"academicId\":33,\"address\":\"wewwer是的地方士大夫\",\"classType\":1,\"courseId\":38,\"courseName\":\"中硕大学第一个课程\",\"createBy\":\"123\",\"createTime\":\"2025-12-01 17:10:13\",\"endDate\":\"2025-12-02\",\"id\":13,\"isDel\":0,\"params\":{},\"schId\":17,\"startDate\":\"2025-12-01\",\"state\":1,\"status\":2},\"orgIds\":[25,26],\"teacherIds\":[126],\"weekList\":[{\"classSchId\":13,\"endTime\":\"17:20\",\"params\":{},\"startTime\":\"17:12\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":13}', 0, NULL, '2025-12-01 17:10:14', 1086); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1340, 17, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '13488103555', NULL, '/chapter', '0:0:0:0:0:0:0:1%0', '', '{\"courseId\":38,\"createBy\":\"123\",\"createTime\":\"2025-12-01 17:13:48\",\"id\":146,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"收到反馈及时的反馈\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":38,\"createBy\":\"123\",\"createTime\":\"2025-12-01 17:13:48\",\"id\":146,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"收到反馈及时的反馈\"}}', 0, NULL, '2025-12-01 17:13:48', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1341, 17, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '13488103555', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":38,\"createBy\":\"123\",\"createTime\":\"2025-12-01 17:14:01\",\"id\":147,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"章节2\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":38,\"createBy\":\"123\",\"createTime\":\"2025-12-01 17:14:01\",\"id\":147,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"章节2\"}}', 0, NULL, '2025-12-01 17:14:01', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1342, 17, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '13488103555', NULL, '/chapter', '0:0:0:0:0:0:0:1%0', '', '{\"courseId\":38,\"createBy\":\"123\",\"createTime\":\"2025-12-01 17:14:06\",\"id\":148,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"章节3\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":38,\"createBy\":\"123\",\"createTime\":\"2025-12-01 17:14:07\",\"id\":148,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"章节3\"}}', 0, NULL, '2025-12-01 17:14:07', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1343, 17, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '13488103555', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":38,\"createBy\":\"123\",\"createTime\":\"2025-12-01 17:14:13\",\"id\":149,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"章节4\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":38,\"createBy\":\"123\",\"createTime\":\"2025-12-01 17:14:14\",\"id\":149,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"章节4\"}}', 0, NULL, '2025-12-01 17:14:13', 103); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1344, 17, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, '13488103555', NULL, '/chapterContent/batch', '127.0.0.1', '', '[{\"chapterId\":146,\"chapterType\":101,\"content\":\"

二位人文氛围

\",\"createTime\":\"2025-12-01 17:14:22\",\"id\":711,\"params\":{},\"schoolId\":17},{\"chapterId\":146,\"chapterType\":102,\"content\":\"\",\"createTime\":\"2025-12-01 17:14:22\",\"id\":712,\"params\":{},\"schoolId\":17},{\"chapterId\":146,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2025-12-01 17:14:23\",\"id\":713,\"params\":{},\"schoolId\":17},{\"chapterId\":146,\"chapterType\":1,\"content\":\"\",\"createTime\":\"2025-12-01 17:14:23\",\"id\":714,\"params\":{},\"schoolId\":17},{\"chapterId\":146,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2025-12-01 17:14:23\",\"id\":715,\"params\":{},\"schoolId\":17},{\"chapterId\":146,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2025-12-01 17:14:23\",\"id\":716,\"params\":{},\"schoolId\":17},{\"chapterId\":146,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2025-12-01 17:14:23\",\"id\":717,\"params\":{},\"schoolId\":17},{\"chapterId\":146,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2025-12-01 17:14:23\",\"id\":718,\"params\":{},\"schoolId\":17},{\"chapterId\":146,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2025-12-01 17:14:23\",\"id\":719,\"params\":{},\"schoolId\":17},{\"chapterId\":146,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2025-12-01 17:14:23\",\"id\":720,\"params\":{},\"schoolId\":17},{\"chapterId\":146,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2025-12-01 17:14:23\",\"id\":721,\"params\":{},\"schoolId\":17}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-12-01 17:14:24', 1148); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1345, 17, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, '13488103555', NULL, '/examInfo', '0:0:0:0:0:0:0:1%0', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10029,\"params\":{},\"questionId\":10354,\"questionMarks\":5,\"questionSortBy\":1},{\"examId\":10029,\"params\":{},\"questionId\":10351,\"questionMarks\":5,\"questionSortBy\":2},{\"examId\":10029,\"params\":{},\"questionId\":10350,\"questionMarks\":5,\"questionSortBy\":3},{\"examId\":10029,\"params\":{},\"questionId\":10347,\"questionMarks\":5,\"questionSortBy\":4},{\"examId\":10029,\"params\":{},\"questionId\":10346,\"questionMarks\":5,\"questionSortBy\":5}],\"createBy\":\"123\",\"createTime\":\"2025-12-01 18:03:46\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":2,\"examTime\":120,\"examTitle\":\"试卷44444444\",\"fullMark\":25,\"id\":10029,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"passMark\":10,\"remark\":\"dfsfdsf\",\"schId\":17,\"singleMark\":25,\"singleNum\":5,\"status\":0,\"updateBy\":\"123\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 18:03:47', 279); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1346, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":101,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 18:25:59', 270); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1347, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13488103555', NULL, '/messageRel/read/435', '127.0.0.1', '', '435', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 22:25:33', 108); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1348, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13488103555', NULL, '/messageRel/read/367', '127.0.0.1', '', '367', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 22:25:35', 80); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1349, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '13488103555', NULL, '/messageRel/read/320', '0:0:0:0:0:0:0:1%0', '', '320', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-01 22:25:38', 81); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1350, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classIds\":[5,6,8,9],\"createBy\":\"1\",\"createTime\":\"2025-12-02 10:10:56\",\"id\":1,\"instructions\":\"

wrwerw

\",\"params\":{},\"score\":20,\"status\":0,\"title\":\"werwerw\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 10:10:57', 382); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1351, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classIds\":[5,6,8,9],\"createBy\":\"1\",\"createTime\":\"2025-12-02 10:16:10\",\"id\":2,\"instructions\":\"

222222

\",\"multipleMark\":21,\"multipleNum\":3,\"params\":{},\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1024,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"id\":1025,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":7},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":6},{\"baseExamQuestionResultList\":[{\"description\":\"111\",\"id\":945,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10329},{\"description\":\"222\",\"id\":946,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10329},{\"description\":\"333\",\"id\":947,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10329},{\"description\":\"444\",\"id\":948,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10329}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 13:07:00\",\"id\":10329,\"params\":{},\"questionAnalysis\":\"测试555\",\"questionAnswer\":\"A,B\",\"questionCourseId\":3,\"questionDesc\":\"干什么1111?\",\"questionKnowledge\":\"123123,214fs阿三打撒\",\"questionRank\":\"0.4\",\"questionScore\":\"11\",\"questionType\":\"2\",\"schId\":1,\"status\":\"0\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 13:34:38\",\"useNumber\":7},{\"baseExamQuestionResultList\":[{\"descriptio', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 10:16:11', 763); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1352, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}},{\"children\":[],\"deptId\":6,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}},{\"children\":[],\"deptId\":9,\"params\":{}}],\"createBy\":\"1\",\"createTime\":\"2025-12-02 10:32:18\",\"id\":3,\"instructions\":\"

3333

\",\"multipleMark\":5,\"multipleNum\":1,\"params\":{},\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1024,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"id\":1025,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":7},{\"baseExamQuestionResultList\":[{\"description\":\"实事求是\",\"id\":1000,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10341},{\"description\":\"群众路线\",\"id\":1001,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10341},{\"description\":\"独立自主\",\"id\":1002,\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10341},{\"description\":\"统一战线\",\"id\":1003,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10341}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:12:38\",\"id\":10341,\"params\":{},\"questionAnalysis\":\"毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方\",\"questionAnswer\":\"A,B,C\",\"questionCourseId\":9,\"questionDesc\":\"毛泽东思想活的灵魂的基本方面有( )\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"2\",\"schId\":1,\"status\":\"0\",\"useNumber\":4},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1022,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10349},{\"description\":\"错\",\"id\":1023,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10349}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:02\",\"id\":10349,\"params\":{},\"questionAnalysis\":\"遵义会议确立了毛泽东在党中央和红军中的领导地位遵义会议确立了毛泽东在党中央和红军中的领导地位遵义会议确立了毛泽东在党中央和红军中的领导地位\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"遵义会议确立了毛泽东在党中央和红军中的领导地位\",\"q', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 10:32:19', 807); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1353, 1, '理论作业', 5, 'com.study.teaching.controller.BaseHomeworkController.export()', 'POST', 1, 'admin', NULL, '/homework/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"isAsc\":\"asc\",\"keyword\":\"\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-12-02 11:27:25', 1043); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1354, 1, '理论作业', 5, 'com.study.teaching.controller.BaseHomeworkController.export()', 'POST', 1, 'admin', NULL, '/homework/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"isAsc\":\"asc\",\"keyword\":\"\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-12-02 11:40:00', 938); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1355, 1, '理论作业', 5, 'com.study.teaching.controller.BaseHomeworkController.export()', 'POST', 1, 'admin', NULL, '/homework/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"isAsc\":\"asc\",\"keyword\":\"\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-12-02 11:41:46', 140); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1356, 1, '理论作业', 5, 'com.study.teaching.controller.BaseHomeworkController.export()', 'POST', 1, 'admin', NULL, '/homework/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"isAsc\":\"asc\",\"keyword\":\"\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-12-02 11:42:08', 126); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1357, 1, '理论作业', 5, 'com.study.teaching.controller.BaseHomeworkController.export()', 'POST', 1, 'admin', NULL, '/homework/export', '127.0.0.1', '', '{\"pageSize\":\"10\",\"isAsc\":\"asc\",\"keyword\":\"\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"status\":\"\"}', NULL, 0, NULL, '2025-12-02 11:42:26', 136); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1358, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"jobId\":1,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 11:44:21', 670); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1359, 1, '理论作业', 3, 'com.study.teaching.controller.BaseHomeworkController.remove()', 'DELETE', 1, 'admin', NULL, '/homework/1', '127.0.0.1', '', '[1]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 11:50:41', 386); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1360, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

121212

\",\"createBy\":\"1\",\"createTime\":\"2025-12-02 14:04:32\",\"id\":39,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"publishTime\":\"2025-12-02 14:04:32\",\"schId\":1,\"sendState\":0,\"sendType\":1,\"title\":\"121212\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 14:04:35', 2443); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1361, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

222

\",\"createBy\":\"1\",\"createTime\":\"2025-12-02 14:06:09\",\"id\":40,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"planSendTime\":\"2025-12-02 14:17:00\",\"publishTime\":\"2025-12-02 14:06:09\",\"schId\":1,\"sendState\":0,\"sendType\":2,\"title\":\"222\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 14:06:10', 66); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1362, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}},{\"children\":[],\"deptId\":6,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}},{\"children\":[],\"deptId\":9,\"params\":{}}],\"createBy\":\"1\",\"createTime\":\"2025-12-02 14:25:55\",\"id\":4,\"instructions\":\"

222222

\",\"multipleMark\":21,\"multipleNum\":3,\"params\":{},\"questionCount\":6,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"111\",\"id\":945,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10329},{\"description\":\"222\",\"id\":946,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10329},{\"description\":\"333\",\"id\":947,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10329},{\"description\":\"444\",\"id\":948,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10329}],\"createBy\":\"1\",\"createTime\":\"2025-11-11 13:07:00\",\"id\":10329,\"params\":{},\"questionAnalysis\":\"测试555\",\"questionAnswer\":\"A,B\",\"questionCourseId\":3,\"questionDesc\":\"干什么1111?\",\"questionKnowledge\":\"123123,214fs阿三打撒\",\"questionRank\":\"0.4\",\"questionScore\":\"11\",\"questionType\":\"2\",\"schId\":1,\"status\":\"0\",\"updateBy\":\"1\",\"updateTime\":\"2025-11-11 13:34:38\"},{\"baseExamQuestionResultList\":[{\"description\":\"马克思主义哲学\",\"id\":996,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10340},{\"description\":\"马克思主义政治经济学\",\"id\":997,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10340},{\"description\":\" 科学社会主义\",\"id\":998,\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10340},{\"description\":\" 空想社会主义\",\"id\":999,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10340}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:11:50\",\"i', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 14:25:56', 724); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1363, 1, '理论作业', 3, 'com.study.teaching.controller.BaseHomeworkController.remove()', 'DELETE', 1, 'admin', NULL, '/homework/2', '127.0.0.1', '', '[2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 14:26:07', 292); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1364, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}},{\"children\":[],\"deptId\":6,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}},{\"children\":[],\"deptId\":9,\"params\":{}}],\"id\":4,\"instructions\":\"

222222

\",\"multipleMark\":21,\"multipleNum\":3,\"params\":{},\"questionCount\":8,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1016,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10346},{\"description\":\"错\",\"id\":1017,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10346}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:17:02\",\"id\":10346,\"params\":{},\"questionAnalysis\":\"习近平新时代中国特色社会主义思想是当代中\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"习近平新时代中国特色社会主义思想是当代中国马克思主义、二十一世纪马克思主义\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":6},{\"baseExamQuestionResultList\":[{\"description\":\"毛泽东思想\",\"id\":992,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10339},{\"description\":\"邓小平理论\",\"id\":993,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10339},{\"description\":\" “三个代表”重要思想\\\"\",\"id\":994,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10339},{\"description\":\"习近平新时代中国特色社会主义思想\",\"id\":995,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10339}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:10:47\",\"id\":10339,\"params\":{},\"questionAnalysis\":\"毛泽东思想毛泽东思想毛泽东思想毛泽东思想毛泽东思想\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionDesc\":\"7.马克思主义中国化的第一次历史性飞跃是( )\",\"questionKnowledge\":\"没有的\",\"questionRank\":\"0.4\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 14:31:55', 1053); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1365, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}},{\"children\":[],\"deptId\":6,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}}],\"id\":4,\"instructions\":\"

222222aaaaa

\",\"multipleMark\":21,\"multipleNum\":3,\"params\":{},\"questionCount\":8,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1016,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10346},{\"description\":\"错\",\"id\":1017,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10346}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:17:02\",\"id\":10346,\"params\":{},\"questionAnalysis\":\"习近平新时代中国特色社会主义思想是当代中\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"习近平新时代中国特色社会主义思想是当代中国马克思主义、二十一世纪马克思主义\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"毛泽东思想\",\"id\":992,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10339},{\"description\":\"邓小平理论\",\"id\":993,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10339},{\"description\":\" “三个代表”重要思想\\\"\",\"id\":994,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10339},{\"description\":\"习近平新时代中国特色社会主义思想\",\"id\":995,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10339}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:10:47\",\"id\":10339,\"params\":{},\"questionAnalysis\":\"毛泽东思想毛泽东思想毛泽东思想毛泽东思想毛泽东思想\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionDesc\":\"7.马克思主义中国化的第一次历史性飞跃是( )\",\"questionKnowledge\":\"没有的\",\"questionRank\":\"0.4\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 14:35:14', 852); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1366, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}},{\"children\":[],\"deptId\":6,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}}],\"id\":4,\"instructions\":\"

222222aaaaa

\",\"multipleMark\":21,\"multipleNum\":3,\"params\":{},\"questionCount\":8,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1016,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10346},{\"description\":\"错\",\"id\":1017,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10346}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:17:02\",\"id\":10346,\"params\":{},\"questionAnalysis\":\"习近平新时代中国特色社会主义思想是当代中\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"习近平新时代中国特色社会主义思想是当代中国马克思主义、二十一世纪马克思主义\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"毛泽东思想\",\"id\":992,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10339},{\"description\":\"邓小平理论\",\"id\":993,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10339},{\"description\":\" “三个代表”重要思想\\\"\",\"id\":994,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10339},{\"description\":\"习近平新时代中国特色社会主义思想\",\"id\":995,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10339}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:10:47\",\"id\":10339,\"params\":{},\"questionAnalysis\":\"毛泽东思想毛泽东思想毛泽东思想毛泽东思想毛泽东思想\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionDesc\":\"7.马克思主义中国化的第一次历史性飞跃是( )\",\"questionKnowledge\":\"没有的\",\"questionRank\":\"0.4\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 14:35:23', 1098); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1367, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}},{\"children\":[],\"deptId\":6,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}}],\"estimateMark\":10,\"estimateNum\":2,\"id\":4,\"instructions\":\"

222222aaaaa

\",\"multipleMark\":21,\"multipleNum\":3,\"params\":{},\"questionCount\":8,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1016,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10346},{\"description\":\"错\",\"id\":1017,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10346}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:17:02\",\"id\":10346,\"params\":{},\"questionAnalysis\":\"习近平新时代中国特色社会主义思想是当代中\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"习近平新时代中国特色社会主义思想是当代中国马克思主义、二十一世纪马克思主义\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"毛泽东思想\",\"id\":992,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10339},{\"description\":\"邓小平理论\",\"id\":993,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10339},{\"description\":\" “三个代表”重要思想\\\"\",\"id\":994,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10339},{\"description\":\"习近平新时代中国特色社会主义思想\",\"id\":995,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10339}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:10:47\",\"id\":10339,\"params\":{},\"questionAnalysis\":\"毛泽东思想毛泽东思想毛泽东思想毛泽东思想毛泽东思想\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionDesc\":\"7.马克思主义中国化的第一次历史性飞跃是( )\",\"questionKnowledge\":\"没有的\",\"questionRank\":\"0.4\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 15:04:36', 916); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1368, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}},{\"children\":[],\"deptId\":6,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}}],\"estimateMark\":10,\"estimateNum\":2,\"id\":4,\"instructions\":\"

222222aaaaa

\",\"multipleMark\":21,\"multipleNum\":3,\"params\":{},\"questionCount\":8,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1016,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10346},{\"description\":\"错\",\"id\":1017,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10346}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:17:02\",\"id\":10346,\"params\":{},\"questionAnalysis\":\"习近平新时代中国特色社会主义思想是当代中\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"习近平新时代中国特色社会主义思想是当代中国马克思主义、二十一世纪马克思主义\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"毛泽东思想\",\"id\":992,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10339},{\"description\":\"邓小平理论\",\"id\":993,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10339},{\"description\":\" “三个代表”重要思想\\\"\",\"id\":994,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10339},{\"description\":\"习近平新时代中国特色社会主义思想\",\"id\":995,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10339}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:10:47\",\"id\":10339,\"params\":{},\"questionAnalysis\":\"毛泽东思想毛泽东思想毛泽东思想毛泽东思想毛泽东思想\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionDesc\":\"7.马克思主义中国化的第一次历史性飞跃是( )\",\"questionKnowledge\":\"没有的\",\"questionRank\":\"0.4\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 15:19:52', 1103); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1369, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":9,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}}],\"createBy\":\"1\",\"createTime\":\"2025-12-02 15:24:53\",\"estimateMark\":15,\"estimateNum\":3,\"id\":5,\"instructions\":\"

3333

\",\"multipleMark\":15,\"multipleNum\":3,\"params\":{},\"questionCount\":9,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1024,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"id\":1025,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":7},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1026,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10351},{\"description\":\"错\",\"id\":1027,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10351}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:27:19\",\"id\":10351,\"params\":{},\"questionAnalysis\":\"道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"道德是靠国家强制力保证实施的\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":7},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":6},{\"baseExamQuestionResultList\":[{\"description\":\"伟大斗争\",\"id\":1008,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10343},{\"descript', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":9,\"deptName\":\"思政2602班\",\"params\":{},\"studentCount\":2},{\"children\":[],\"deptId\":8,\"deptName\":\"思政2601班\",\"params\":{},\"studentCount\":1}],\"createBy\":\"1\",\"createTime\":\"2025-12-02 15:24:53\",\"estimateMark\":15,\"estimateNum\":3,\"id\":5,\"instructions\":\"

3333

\",\"isDel\":0,\"multipleMark\":15,\"multipleNum\":3,\"params\":{},\"questionCount\":9,\"schId\":1,\"score\":45,\"singleMark\":15,\"singleNum\":3,\"status\":1,\"title\":\"3333\"}}', 0, NULL, '2025-12-02 15:24:54', 1265); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1370, 1, '代码生成', 6, 'com.study.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', '{\"tables\":\"base_backup\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 16:18:18', 943); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1371, 1, '代码生成', 2, 'com.study.gen.controller.GenController.editSave()', 'PUT', 1, 'admin', NULL, '/gen', '127.0.0.1', '', '{\"businessName\":\"backup\",\"className\":\"BaseBackup\",\"columns\":[{\"capJavaField\":\"Id\",\"columnId\":1550,\"columnName\":\"id\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-02 16:18:17\",\"dictType\":\"\",\"edit\":false,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isPk\":\"1\",\"javaField\":\"id\",\"javaType\":\"Long\",\"list\":false,\"params\":{},\"pk\":true,\"query\":false,\"queryType\":\"EQ\",\"required\":false,\"sort\":1,\"superColumn\":false,\"tableId\":112,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Name\",\"columnComment\":\"名字\",\"columnId\":1551,\"columnName\":\"name\",\"columnType\":\"varchar(255)\",\"createBy\":\"admin\",\"createTime\":\"2025-12-02 16:18:17\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"name\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"LIKE\",\"required\":false,\"sort\":2,\"superColumn\":false,\"tableId\":112,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Path\",\"columnComment\":\"文件路径\",\"columnId\":1552,\"columnName\":\"path\",\"columnType\":\"varchar(500)\",\"createBy\":\"admin\",\"createTime\":\"2025-12-02 16:18:17\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"textarea\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"path\",\"javaType\":\"String\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":false,\"sort\":3,\"superColumn\":false,\"tableId\":112,\"updateBy\":\"\",\"usableColumn\":false},{\"capJavaField\":\"Size\",\"columnComment\":\"文件大小\",\"columnId\":1553,\"columnName\":\"size\",\"columnType\":\"bigint\",\"createBy\":\"admin\",\"createTime\":\"2025-12-02 16:18:17\",\"dictType\":\"\",\"edit\":true,\"htmlType\":\"input\",\"increment\":false,\"insert\":true,\"isEdit\":\"1\",\"isIncrement\":\"0\",\"isInsert\":\"1\",\"isList\":\"1\",\"isPk\":\"0\",\"isQuery\":\"1\",\"javaField\":\"size\",\"javaType\":\"Long\",\"list\":true,\"params\":{},\"pk\":false,\"query\":true,\"queryType\":\"EQ\",\"required\":fals', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 16:20:43', 733); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1372, 1, '代码生成', 8, 'com.study.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', '{\"tables\":\"base_backup\"}', NULL, 0, NULL, '2025-12-02 16:20:49', 659); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1373, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":11,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2186,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 17:04:21', 357); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1374, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":1,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 17:04:32', 340); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1375, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004],\"params\":{},\"roleId\":110,\"roleKey\":\"vvv\",\"roleName\":\"vvv\",\"roleSort\":5,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 17:04:41', 494); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1376, 21, '教师管理', 2, 'com.study.system.controller.SysUserController.editSecretKey()', 'PUT', 1, '15202903075', NULL, '/user/editSecretKey/134', '0:0:0:0:0:0:0:1%0', '', '[134]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 17:10:15', 364); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1377, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"ancestors\":\"0\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"test2学院\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"XY002\",\"orgDesc\":\"1111\",\"orgLevel\":1,\"params\":{},\"parentId\":0,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-02 17:21:58', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1378, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, '18111111111', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}},{\"children\":[],\"deptId\":9,\"params\":{}}],\"createBy\":\"110\",\"createTime\":\"2025-12-02 17:43:33\",\"estimateMark\":10,\"estimateNum\":2,\"id\":6,\"instructions\":\"

我的测试001

\",\"multipleMark\":10,\"multipleNum\":2,\"params\":{},\"questionCount\":7,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1024,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"id\":1025,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":7},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1026,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10351},{\"description\":\"错\",\"id\":1027,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10351}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:27:19\",\"id\":10351,\"params\":{},\"questionAnalysis\":\"道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"道德是靠国家强制力保证实施的\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":7},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":6},{\"baseExamQuestionResultList\":[{\"description\":\"实事求是\",\"id\":1000,\"isOk\":1,\"option\":\"A', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"studentCount\":1},{\"children\":[],\"deptId\":8,\"deptName\":\"思政2601班\",\"params\":{},\"studentCount\":1},{\"children\":[],\"deptId\":9,\"deptName\":\"思政2602班\",\"params\":{},\"studentCount\":2}],\"createBy\":\"110\",\"createTime\":\"2025-12-02 17:43:34\",\"estimateMark\":10,\"estimateNum\":2,\"id\":6,\"instructions\":\"

我的测试001

\",\"isDel\":0,\"multipleMark\":10,\"multipleNum\":2,\"params\":{},\"questionCount\":7,\"schId\":1,\"score\":35,\"singleMark\":15,\"singleNum\":3,\"status\":1,\"title\":\"我的测试001\"}}', 0, NULL, '2025-12-02 17:43:35', 1319); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1379, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, '18111111111', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}},{\"children\":[],\"deptId\":6,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}},{\"children\":[],\"deptId\":9,\"params\":{}}],\"createBy\":\"110\",\"createTime\":\"2025-12-03 11:19:54\",\"estimateMark\":15,\"estimateNum\":3,\"id\":7,\"instructions\":\"

我的作业02

\",\"multipleMark\":12,\"multipleNum\":3,\"params\":{},\"questionCount\":9,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":6},{\"baseExamQuestionResultList\":[{\"description\":\"毛泽东思想\",\"id\":992,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10339},{\"description\":\"邓小平理论\",\"id\":993,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10339},{\"description\":\" “三个代表”重要思想\\\"\",\"id\":994,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10339},{\"description\":\"习近平新时代中国特色社会主义思想\",\"id\":995,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10339}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:10:47\",\"id\":10339,\"params\":{},\"questionAnalysis\":\"毛泽东思想毛泽东思想毛泽东思想毛泽东思想毛泽东思想\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionDesc\":\"7.马克思主义中国化的第一次历史性飞跃是( )\",\"questionKnowledge\":\"没有的\",\"questionRank\":\"0.4\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":5},{\"baseExamQuestionResultList\":[{\"description\":\"富强民主文明和谐\",\"id\":984,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10337},{\"description\":\"自由平等公正法治\",\"id\":985,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10337},{\"description\":\"爱国敬业诚信友善\",\"id\":986,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10337},{\"description\":\"富强民主自由平等\",\"id\":987,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\"', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"studentCount\":1},{\"children\":[],\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"studentCount\":0},{\"children\":[],\"deptId\":8,\"deptName\":\"思政2601班\",\"params\":{},\"studentCount\":1},{\"children\":[],\"deptId\":9,\"deptName\":\"思政2602班\",\"params\":{},\"studentCount\":2}],\"createBy\":\"110\",\"createTime\":\"2025-12-03 11:19:55\",\"estimateMark\":15,\"estimateNum\":3,\"id\":7,\"instructions\":\"

我的作业02

\",\"isDel\":0,\"multipleMark\":12,\"multipleNum\":3,\"params\":{},\"questionCount\":9,\"schId\":1,\"score\":42,\"singleMark\":15,\"singleNum\":3,\"status\":1,\"title\":\"我的作业02\"}}', 0, NULL, '2025-12-03 11:19:56', 1528); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1380, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"备份失败: \\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:\\\\ws\\\\school-mgr\\\\StudyCloud\\\\study-common\\\\study-common-mapper\\\\target\\\\classes\\\\mapper\\\\setting\\\\BaseBackupMapper.xml]\\r\\n### The error may involve com.study.setting.mapper.BaseBackupMapper.insertBaseBackup-Inline\\r\\n### The error occurred while setting parameters\\r\\n### SQL: insert into base_backup ( name, path, size, status, create_by, 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\",\"code\":500}', 0, NULL, '2025-12-03 11:21:29', 64985); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1381, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"备份失败: d != java.lang.String\",\"code\":500}', 0, NULL, '2025-12-03 11:23:07', 60208); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1382, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"备份失败: d != java.lang.String\",\"code\":500}', 0, NULL, '2025-12-03 11:23:57', 31305); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1383, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"备份失败: null\",\"code\":500}', 0, NULL, '2025-12-03 11:28:11', 180443); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1384, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"备份失败: null\",\"code\":500}', 0, NULL, '2025-12-03 11:32:31', 82060); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1385, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"备份失败: null\",\"code\":500}', 0, NULL, '2025-12-03 11:35:55', 156643); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1386, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 11:40:43', 69776); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1387, 1, '作业统计', 5, 'com.study.teaching.controller.BaseHomeworkStudentController.export()', 'POST', 1, '18111111111', NULL, '/studentHomeWork/export', '127.0.0.1', '', '{\"schId\":\"1\",\"homeworkId\":\"6\",\"examStatus\":\"0\",\"pageSize\":\"10\",\"keyword\":\"\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-12-03 11:49:24', 941); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1388, 1, '作业统计', 5, 'com.study.teaching.controller.BaseHomeworkStudentController.export()', 'POST', 1, '18111111111', NULL, '/studentHomeWork/export', '127.0.0.1', '', '{\"schId\":\"1\",\"homeworkId\":\"6\",\"examStatus\":\"0\",\"pageSize\":\"10000\",\"keyword\":\"\",\"pageNum\":\"1\",\"orgId\":\"\"}', NULL, 0, NULL, '2025-12-03 11:51:28', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1389, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 12:01:15', 43585); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1390, 1, '作业统计', 5, 'com.study.teaching.controller.BaseHomeworkStudentController.export()', 'POST', 1, '18111111111', NULL, '/studentHomeWork/export', '127.0.0.1', '', '{\"schId\":\"1\",\"homeworkId\":\"6\",\"examStatus\":\"0\",\"pageSize\":\"10000\",\"isAsc\":\"asc\",\"keyword\":\"\",\"orderByColumn\":\"student_code\",\"pageNum\":\"1\",\"orgId\":\"\"}', NULL, 0, NULL, '2025-12-03 14:04:53', 865); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1391, 1, '作业统计', 5, 'com.study.teaching.controller.BaseHomeworkStudentController.export()', 'POST', 1, '18111111111', NULL, '/studentHomeWork/export', '127.0.0.1', '', '{\"schId\":\"1\",\"homeworkId\":\"6\",\"examStatus\":\"0\",\"pageSize\":\"10000\",\"isAsc\":\"asc\",\"keyword\":\"\",\"orderByColumn\":\"student_code\",\"pageNum\":\"1\",\"orgId\":\"\"}', NULL, 0, NULL, '2025-12-03 14:07:13', 14916); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1392, 1, '作业统计', 5, 'com.study.teaching.controller.BaseHomeworkStudentController.export()', 'POST', 1, '18111111111', NULL, '/studentHomeWork/export', '127.0.0.1', '', '{\"schId\":\"1\",\"homeworkId\":\"6\",\"examStatus\":\"0\",\"pageSize\":\"10000\",\"isAsc\":\"asc\",\"keyword\":\"哈二\",\"orderByColumn\":\"student_code\",\"pageNum\":\"1\",\"orgId\":\"\"}', NULL, 0, NULL, '2025-12-03 14:09:03', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1393, 1, '系统备份', 3, 'com.study.setting.controller.BaseBackupController.remove()', 'DELETE', 1, 'admin', NULL, '/backup/8', '127.0.0.1', '', '[8]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 14:24:57', 376); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1394, 1, '系统备份', 2, 'com.study.setting.controller.BaseBackupController.restore()', 'GET', 1, 'admin', NULL, '/backup/restore/9', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 14:57:02', 75649); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1395, 21, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '15202903075', NULL, '/notice', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"

3333333333

\",\"createBy\":\"133\",\"createTime\":\"2025-12-03 15:05:05\",\"id\":41,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-12-03 15:05:05\",\"schId\":21,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"杨发送的通知公告3\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:05:05', 449); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1396, 1, '系统备份', 2, 'com.study.setting.controller.BaseBackupController.restore()', 'GET', 1, 'admin', NULL, '/backup/restore/10', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:09:59', 25007); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1397, 1, '系统备份', 2, 'com.study.setting.controller.BaseBackupController.restore()', 'GET', 1, 'admin', NULL, '/backup/restore/11', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:11:53', 25994); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1398, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:47:54', 43394); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1399, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:48:40', 41197); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1400, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:49:27', 43126); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1401, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:50:16', 43873); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1402, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:55:41', 42243); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1403, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:58:08', 42725); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1404, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:58:53', 42694); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1405, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 15:59:38', 41898); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1406, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:03:13', 41920); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1407, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:05:04', 43777); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1408, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"concurrent\":\"1\",\"createBy\":\"admin\",\"createTime\":\"2025-11-14 17:21:39\",\"cronExpression\":\"0 */5 * * * ?\",\"invokeTarget\":\"informationTask.sendMessage\",\"jobGroup\":\"SYSTEM\",\"jobId\":100,\"jobName\":\"信息系统-定时发送系统消息、通知公告、热点\",\"misfirePolicy\":\"1\",\"nextValidTime\":\"2025-12-03 16:15:00\",\"params\":{},\"remark\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:14:03', 323); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1409, 1, '定时任务', 1, 'com.study.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"concurrent\":\"1\",\"createBy\":\"admin\",\"cronExpression\":\"0 0 1 * * ?\",\"invokeTarget\":\"DbBackupCleanTask.clean\",\"jobGroup\":\"SYSTEM\",\"jobId\":102,\"jobName\":\"数据库备份定时清理\",\"misfirePolicy\":\"1\",\"nextValidTime\":\"2025-12-04 01:00:00\",\"params\":{},\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:22:25', 188); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1410, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"jobId\":102,\"misfirePolicy\":\"0\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:22:36', 186); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1411, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":102,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:22:45', 164); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1412, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":102,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:32:15', 2818); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1413, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:38:50', 41877); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1414, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:39:47', 41065); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1415, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:40:32', 41592); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1416, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:41:26', 42862); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1417, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:44:21', 41197); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1418, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":102,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:45:39', 3613); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1419, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:48:12', 43167); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1420, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:48:57', 42780); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1421, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:50:09', 41860); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1422, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:52:53', 43466); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1423, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:53:59', 44015); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1424, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":102,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 16:55:19', 145); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1425, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:26:23', 43780); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1426, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:27:08', 42782); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1427, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:30:53', 40992); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1428, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:31:40', 44162); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1429, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:32:45', 43993); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1430, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:33:38', 43930); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1431, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:35:44', 43795); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1432, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":102,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:36:45', 138); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1433, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":102,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:43:26', 3541); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1434, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:44:45', 42637); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1435, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:45:31', 44410); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1436, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-03 17:46:56', 44834); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1437, 1, '系统备份', 2, 'com.study.setting.controller.BaseBackupController.restore()', 'GET', 1, 'admin', NULL, '/backup/restore/41', '127.0.0.1', '', '{}', '{\"msg\":\"备份失败: 该记录所对应的文件不存在,可能已删除\",\"code\":500}', 0, NULL, '2025-12-03 18:10:53', 66); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1438, 1, '系统备份', 2, 'com.study.setting.controller.BaseBackupController.restore()', 'GET', 1, 'admin', NULL, '/backup/restore/41', '127.0.0.1', '', '{}', '{\"msg\":\"备份失败: 该记录所对应的文件不存在,可能已删除\",\"code\":500}', 0, NULL, '2025-12-03 18:10:58', 37); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1439, 1, '系统备份', 2, 'com.study.setting.controller.BaseBackupController.restore()', 'GET', 1, 'admin', NULL, '/backup/restore/44', '0:0:0:0:0:0:0:1%0', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 09:40:42', 46376); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1440, 17, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, '13488103555', NULL, '/homework/addHomework', '0:0:0:0:0:0:0:1%0', '', '{\"classList\":[{\"children\":[],\"deptId\":25,\"params\":{}}],\"createBy\":\"123\",\"createTime\":\"2025-12-04 10:30:05\",\"estimateMark\":10,\"estimateNum\":2,\"id\":8,\"instructions\":\"

第一个作业第一个作业第一个作业第一个作业第一个作业

第一个作业

第一个作业

第一个作业

第一个作业

第一个作业

\",\"multipleMark\":10,\"multipleNum\":2,\"params\":{},\"questionCount\":6,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1026,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10351},{\"description\":\"错\",\"id\":1027,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10351}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:27:19\",\"id\":10351,\"params\":{},\"questionAnalysis\":\"道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"道德是靠国家强制力保证实施的\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":10},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1024,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"id\":1025,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\",\"useNumber\":15},{\"baseExamQuestionResultList\":[{\"description\":\"伟大斗争\",\"id\":1008,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大工程\",\"id\":1009,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大事业\",\"id\":1010,\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大梦想\",\"id\":1011,\"isOk\":1,\"option\":\"D\",\"params\":{},\"questionId\":10343}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:14:31\",\"id\":10343,\"params\":{},\"questionAnalysis\":\"党的十九大提出的“四个伟大”是指党的十九大提出的“四个伟大”是指党的十九大提出的“四个伟大”是指\",\"questionAnswer\":\"A,B,C,D\",\"questionCourseId\":9,\"questionDesc\":\"党的十九大提出的“四个伟大”是指\",\"quest', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":25,\"deptName\":\"求真8班\",\"params\":{},\"studentCount\":1}],\"createBy\":\"123\",\"createTime\":\"2025-12-04 10:30:06\",\"estimateMark\":10,\"estimateNum\":2,\"id\":8,\"instructions\":\"

第一个作业第一个作业第一个作业第一个作业第一个作业

第一个作业

第一个作业

第一个作业

第一个作业

第一个作业

\",\"isDel\":0,\"multipleMark\":10,\"multipleNum\":2,\"params\":{},\"questionCount\":6,\"schId\":17,\"score\":30,\"singleMark\":10,\"singleNum\":2,\"status\":0,\"title\":\"第一个作业\"}}', 0, NULL, '2025-12-04 10:30:07', 814); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1441, 17, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, '13488103555', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":25,\"params\":{}}],\"estimateMark\":10,\"estimateNum\":2,\"id\":8,\"instructions\":\"

第一个作业第一个作业第一个作业第一个作业第一个作业

第一个作业

第一个作业

第一个作业

第一个作业

第一个作业

\",\"multipleMark\":10,\"multipleNum\":2,\"params\":{},\"questionCount\":6,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1026,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10351},{\"description\":\"错\",\"id\":1027,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10351}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:27:19\",\"id\":10351,\"params\":{},\"questionAnalysis\":\"道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"道德是靠国家强制力保证实施的\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1024,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"id\":1025,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"},{\"baseExamQuestionResultList\":[{\"description\":\"伟大斗争\",\"id\":1008,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大工程\",\"id\":1009,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大事业\",\"id\":1010,\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大梦想\",\"id\":1011,\"isOk\":1,\"option\":\"D\",\"params\":{},\"questionId\":10343}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:14:31\",\"id\":10343,\"params\":{},\"questionAnalysis\":\"党的十九大提出的“四个伟大”是指党的十九大提出的“四个伟大”是指党的十九大提出的“四个伟大”是指\",\"questionAnswer\":\"A,B,C,D\",\"questionCourseId\":9,\"questionDesc\":\"党的十九大提出的“四个伟大”是指\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"2\",\"schId\":1,\"status\":\"0\"},{\"ba', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":25,\"deptName\":\"求真8班\",\"params\":{},\"studentCount\":1}],\"createBy\":\"123\",\"createTime\":\"2025-12-04 10:30:06\",\"estimateMark\":10,\"estimateNum\":2,\"id\":8,\"instructions\":\"

第一个作业第一个作业第一个作业第一个作业第一个作业

第一个作业

第一个作业

第一个作业

第一个作业

第一个作业

\",\"isDel\":0,\"multipleMark\":10,\"multipleNum\":2,\"params\":{},\"questionCount\":6,\"schId\":17,\"score\":30,\"singleMark\":10,\"singleNum\":2,\"status\":1,\"title\":\"第一个作业\",\"updateBy\":\"123\",\"updateTime\":\"2025-12-04 10:30:28\"}}', 0, NULL, '2025-12-04 10:30:29', 1053); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1442, 17, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, '13488103555', NULL, '/student/editSecretKey/10', '127.0.0.1', '', '[10]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 11:07:38', 319); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1443, 17, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, '13488103555', NULL, '/student/editSecretKey/10', '0:0:0:0:0:0:0:1%0', '', '[10]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 11:09:10', 278); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1444, 17, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, '13488103555', NULL, '/student/editSecretKey/10', '0:0:0:0:0:0:0:1%0', '', '[10]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 11:09:47', 277); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1445, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/student/editSecretKey/1,2', '127.0.0.1', '', '[1,2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 11:15:08', 447); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1446, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/student/editSecretKey/2', '127.0.0.1', '', '[2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 11:18:51', 234); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1447, 17, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, '13488103555', NULL, '/student/editSecretKey/10', '127.0.0.1', '', '[10]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 11:27:58', 745); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1448, 17, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, '13488103555', NULL, '/student/editSecretKey/10', '0:0:0:0:0:0:0:1%0', '', '[10]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 11:28:16', 234); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1449, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/student/editSecretKey/1', '0:0:0:0:0:0:0:1%0', '', '[1]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 14:39:13', 239); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1450, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/12/04/3_20251204144800A001.png\",\"createBy\":\"1\",\"createTime\":\"2025-12-04 14:51:40\",\"description\":\"

1111

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":70,\"name\":\"我的测试课程\",\"params\":{},\"premiumTypes\":\"1,2\",\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":9,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/12/04/3_20251204144800A001.png\",\"createBy\":\"1\",\"createTime\":\"2025-12-04 14:51:40\",\"description\":\"

1111

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":70,\"name\":\"我的测试课程\",\"params\":{},\"premiumTypes\":\"1,2\",\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":9,\"viewCount\":0}}', 0, NULL, '2025-12-04 14:51:41', 130); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1451, 21, '基础试卷', 1, 'com.study.examine.controller.BaseExamInfoController.add()', 'POST', 1, '15202903075', NULL, '/examInfo', '127.0.0.1', '', '{\"baseExamInfoQuestionList\":[{\"examId\":10030,\"params\":{},\"questionId\":10321,\"questionMarks\":2,\"questionSortBy\":1},{\"examId\":10030,\"params\":{},\"questionId\":10318,\"questionMarks\":2,\"questionSortBy\":2}],\"createBy\":\"133\",\"createTime\":\"2025-12-04 16:53:25\",\"estimateMark\":0,\"estimateNum\":0,\"examRank\":1,\"examTime\":120,\"examTitle\":\"11\",\"fullMark\":4,\"id\":10030,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"passMark\":10,\"remark\":\"111\",\"schId\":21,\"singleMark\":4,\"singleNum\":2,\"status\":0,\"updateBy\":\"133\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 16:53:26', 315); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1452, 21, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, '15202903075', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":37,\"baseExamPlanClassList\":[{\"classId\":30,\"deptCode\":\"bj001\",\"deptId\":30,\"deptName\":\"2025思政一班\",\"params\":{},\"planId\":121}],\"createBy\":\"133\",\"createTime\":\"2025-12-04 16:57:25\",\"examAddress\":\"12121\",\"examEndTime\":\"2025-12-04 18:30:00\",\"examInfoId\":10022,\"examStartTime\":\"2025-12-04 18:00:00\",\"examTitle\":\"1212121\",\"id\":121,\"params\":{},\"schId\":21}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 16:57:26', 465); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1453, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '0:0:0:0:0:0:0:1%0', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"planId\":122},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"planId\":122}],\"createBy\":\"1\",\"createTime\":\"2025-12-04 17:05:37\",\"examAddress\":\"时尚大方\",\"examEndTime\":\"2025-12-05 09:30:00\",\"examInfoId\":1,\"examStartTime\":\"2025-12-05 08:45:00\",\"examTitle\":\"测试3\",\"id\":122,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 17:05:38', 448); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1454, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":139,\"chapterType\":101,\"content\":\"

你好,我是教学引导222

\\\"tx_20251128150302A012.png\\\"



\",\"id\":623,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-12-04 17:13:24\"},{\"chapterId\":139,\"chapterType\":102,\"content\":\"


\",\"id\":624,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-12-04 17:13:24\"},{\"chapterId\":139,\"chapterType\":2,\"content\":\"{\\\"id\\\":45,\\\"name\\\":\\\"测试视频资源1\\\",\\\"url\\\":\\\"/statics/2025/11/26/%E8%B7%AF%E6%A1%A54D%E6%A8%A1%E6%8B%9F%E3%80%90%E9%99%95%E8%A5%BF%E7%A0%94%E7%AD%91%E7%A7%91%E6%8A%80%E3%80%91_20251126152843A003.mp4\\\",\\\"size\\\":14794783,\\\"duration\\\":74.35,\\\"source\\\":\\\"1\\\",\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-12 15:29:05\\\",\\\"updateBy\\\":\\\"14\\\",\\\"updateTime\\\":\\\"2025-12-01 11:39:24\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"/statics/2025/11/26/20250611_173001_001_20251126152855A004.jpg\\\",\\\"description\\\":\\\"

测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1测试视频资源1

\\\",\\\"viewCount\\\":1,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/路桥4D模拟【陕西研筑科技】_20251126152843A003.mp4\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":14794783,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142124231,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":1,\\\"subjectId\\\":2,\\\"typeId\\\":2,\\\"stage\\\":1,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"1,2\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"typeName\\\":\\\"视频\\\",\\\"referenceCo', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-12-04 17:13:25', 1539); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1455, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":139,\"chapterType\":2,\"params\":{},\"resourceId\":45},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":139,\"chapterType\":1,\"params\":{},\"resourceId\":65},{\"chapterId\":139,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":53},{\"chapterId\":139,\"chapterType\":5,\"params\":{},\"resourceId\":54},{\"chapterId\":139,\"chapterType\":8,\"params\":{},\"resourceId\":57},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10321},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10350},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10347},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10343},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10342},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10323},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10352},{\"chapterId\":139,\"chapterType\":104,\"params\":{},\"questionId\":10349}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2025-12-04 17:13:25', 40); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1456, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"4654651\",\"createBy\":\"admin\",\"deptClassInfoList\":[{\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\"}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"email\":\"1@qq.com\",\"joinTime\":\"2025-12-04\",\"nickName\":\"张三\",\"params\":{},\"phoneNumber\":\"13335409925\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"1\",\"status\":\"0\",\"userId\":137,\"userName\":\"13335409925\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 17:26:27', 454); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1457, 17, '系统备份', 2, 'com.study.setting.controller.BaseBackupController.restore()', 'GET', 1, '13488103555', NULL, '/backup/restore/45', '0:0:0:0:0:0:0:1%0', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 17:35:02', 28903); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1458, 1, '字典类型', 1, 'com.study.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"admin\",\"dictName\":\"AI模型名称\",\"dictType\":\"ai_model_name\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:00:21', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1459, 1, '字典数据', 1, 'com.study.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"default\":false,\"dictLabel\":\"default\",\"dictSort\":0,\"dictType\":\"ai_model_name\",\"dictValue\":\"deepseek-r1:14b\",\"listClass\":\"default\",\"params\":{},\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:01:13', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1460, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"题库管理、考试安排、智能评分、成绩分析的综合测评系统\",\"appIconPath\":\"/statics/2025/12/04/考试系统_20251204180111A002.png\",\"appId\":4,\"appName\":\"考试系统\",\"appPath\":\"/examSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"4\",\"updateBy\":\"admin\",\"updateTime\":\"2025-12-04 18:01:14\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:01:14', 70); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1461, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"系统消息、通知公告、校园邮箱等及时推送\",\"appIconPath\":\"/statics/2025/12/04/信息系统_20251204180125A003.png\",\"appId\":5,\"appName\":\"信息系统\",\"appPath\":\"/infoSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"5\",\"updateBy\":\"admin\",\"updateTime\":\"2025-12-04 18:01:26\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:01:26', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1462, 1, '字典数据', 2, 'com.study.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":\"2025-12-04 18:01:13\",\"default\":false,\"dictCode\":110,\"dictLabel\":\"default\",\"dictSort\":0,\"dictType\":\"ai_model_name\",\"dictValue\":\"deepseek-r1:14b\",\"isDefault\":\"N\",\"listClass\":\"default\",\"params\":{},\"status\":\"1\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:01:29', 104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1463, 1, '字典数据', 2, 'com.study.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"admin\",\"createTime\":\"2025-12-04 18:01:13\",\"default\":false,\"dictCode\":110,\"dictLabel\":\"default\",\"dictSort\":0,\"dictType\":\"ai_model_name\",\"dictValue\":\"deepseek-r1:14b\",\"isDefault\":\"N\",\"listClass\":\"default\",\"params\":{},\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:01:32', 110); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1464, 1, '资源分类设置', 2, 'com.study.resource.controller.BaseResourceCategoryController.edit()', 'PUT', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 10:00:04\",\"createUserName\":\"超级管理员\",\"description\":\"123\",\"iconPath\":\"/statics/2025/12/04/党史学习-12_20251204180245A004.png\",\"id\":1,\"isDel\":0,\"name\":\"党史学习\",\"params\":{},\"resourceCount\":13,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:02:50\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:02:50', 133); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1465, 1, '资源分类设置', 2, 'com.study.resource.controller.BaseResourceCategoryController.edit()', 'PUT', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 10:01:38\",\"createUserName\":\"超级管理员\",\"description\":\"111\",\"iconPath\":\"/statics/2025/12/04/社会主义核心价值观-13_20251204180312A005.png\",\"id\":2,\"isDel\":0,\"name\":\"思想政治\",\"params\":{},\"resourceCount\":13,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:03:14\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:03:14', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1466, 1, '资源分类设置', 2, 'com.study.resource.controller.BaseResourceCategoryController.edit()', 'PUT', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 17:19:45\",\"createUserName\":\"超级管理员\",\"description\":\"\",\"iconPath\":\"/statics/2025/12/04/社会主义核心价值观-13_20251204180322A006.png\",\"id\":3,\"isDel\":0,\"name\":\"社会主义核心价值观\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:03:23\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:03:23', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1467, 1, '资源分类设置', 2, 'com.study.resource.controller.BaseResourceCategoryController.edit()', 'PUT', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:35:14\",\"createUserName\":\"超级管理员\",\"description\":\"沙发沙发是否发射点发顺丰到付\",\"iconPath\":\"/statics/2025/12/04/师德师风建设-14_20251204180333A007.png\",\"id\":7,\"isDel\":0,\"name\":\"啊是教育\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:03:34\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:03:34', 72); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1468, 1, '资源分类设置', 2, 'com.study.resource.controller.BaseResourceCategoryController.edit()', 'PUT', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-10 17:35:14\",\"createUserName\":\"超级管理员\",\"description\":\"沙发沙发是否发射点发顺丰到付\",\"iconPath\":\"/statics/2025/12/04/师德师风建设-14_20251204180333A007.png\",\"id\":7,\"isDel\":0,\"name\":\"师德师风\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:03:43\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:03:43', 72); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1469, 1, '资源分类设置', 2, 'com.study.resource.controller.BaseResourceCategoryController.edit()', 'PUT', 1, 'admin', NULL, '/resourceCategory', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-11 16:52:35\",\"createUserName\":\"超级管理员\",\"description\":\"\",\"iconPath\":\"/statics/2025/12/04/爱国主义教育_画板 11_20251204180356A008.png\",\"id\":8,\"isDel\":0,\"name\":\"爱国主义教育\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:04:06\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:04:06', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1470, 1, '学科设置', 2, 'com.study.resource.controller.BaseResourceSubjectController.edit()', 'PUT', 1, 'admin', NULL, '/subject', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 17:53:15\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/哲学_20251204180434A009.png\",\"id\":1,\"isDel\":0,\"name\":\" 哲学\",\"params\":{},\"resourceCount\":6,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:04:35\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:04:35', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1471, 1, '学科设置', 2, 'com.study.resource.controller.BaseResourceSubjectController.edit()', 'PUT', 1, 'admin', NULL, '/subject', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 18:33:40\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/经济学_20251204180444A010.png\",\"id\":2,\"isDel\":0,\"name\":\"经济学\",\"params\":{},\"resourceCount\":17,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:04:45\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:04:45', 75); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1472, 1, '学科设置', 2, 'com.study.resource.controller.BaseResourceSubjectController.edit()', 'PUT', 1, 'admin', NULL, '/subject', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 17:20:09\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/法学_20251204180454A011.png\",\"id\":3,\"isDel\":0,\"name\":\"法学\",\"params\":{},\"resourceCount\":3,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:04:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:04:55', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1473, 1, '学科设置', 2, 'com.study.resource.controller.BaseResourceSubjectController.edit()', 'PUT', 1, 'admin', NULL, '/subject', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 17:20:21\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/教育学_20251204180504A012.png\",\"id\":4,\"isDel\":0,\"name\":\"教育学\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:05:05\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:05:05', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1474, 1, '学科设置', 2, 'com.study.resource.controller.BaseResourceSubjectController.edit()', 'PUT', 1, 'admin', NULL, '/subject', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 17:20:36\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/文学_20251204180511A013.png\",\"id\":5,\"isDel\":0,\"name\":\"文学\",\"params\":{},\"resourceCount\":0,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:05:12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:05:12', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1475, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 18:36:46\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/课件_20251204180531A014.png\",\"id\":1,\"isDel\":0,\"name\":\"课件\",\"params\":{},\"resourceCount\":6,\"schId\":1,\"type\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:05:32\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:05:32', 81); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1476, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 19:06:21\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/视频_20251204180540A015.png\",\"id\":2,\"isDel\":0,\"name\":\"视频\",\"params\":{},\"resourceCount\":3,\"schId\":1,\"type\":2,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:05:40\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:05:41', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1477, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:36:31\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/教案_20251204180547A016.png\",\"id\":3,\"isDel\":0,\"name\":\"教案\",\"params\":{},\"resourceCount\":2,\"schId\":1,\"type\":3,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:05:47\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:05:48', 74); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1478, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:36:46\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/图片_20251204180558A018.png\",\"id\":4,\"isDel\":0,\"name\":\"图片\",\"params\":{},\"resourceCount\":2,\"schId\":1,\"type\":4,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:05:58\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:05:59', 72); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1479, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:46:08\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/音乐_20251204180605A019.png\",\"id\":5,\"isDel\":0,\"name\":\"音频\",\"params\":{},\"resourceCount\":2,\"schId\":1,\"type\":5,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:06:06\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:06:06', 74); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1480, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:46:23\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/链接_20251204180613A020.png\",\"id\":6,\"isDel\":0,\"name\":\" 链接\",\"params\":{},\"resourceCount\":3,\"schId\":1,\"type\":6,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:06:13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:06:13', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1481, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:46:36\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/全景_20251204180619A021.png\",\"id\":7,\"isDel\":0,\"name\":\"全景\",\"params\":{},\"resourceCount\":2,\"schId\":1,\"type\":7,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:06:20\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:06:20', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1482, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:46:53\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/3D模型_20251204180625A022.png\",\"id\":8,\"isDel\":0,\"name\":\"3D模型\",\"params\":{},\"resourceCount\":1,\"schId\":1,\"type\":8,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:06:26\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:06:26', 70); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1483, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 09:47:29\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/虚拟仿真馆_20251204180631A023.png\",\"id\":9,\"isDel\":0,\"name\":\"虚拟仿真展馆\",\"params\":{},\"resourceCount\":2,\"schId\":1,\"type\":9,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:06:32\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:06:32', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1484, 1, '资源类型设置', 2, 'com.study.resource.controller.BaseResourceTypeController.edit()', 'PUT', 1, 'admin', NULL, '/resourceType', '127.0.0.1', '', '{\"createBy\":\"1\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/图书_20251204180639A024.png\",\"id\":10,\"isDel\":0,\"name\":\"图书\",\"params\":{},\"resourceCount\":3,\"schId\":1,\"type\":10,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:06:40\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:06:40', 70); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1485, 1, '资源标签设置', 2, 'com.study.resource.controller.BaseResourceTagController.edit()', 'PUT', 1, 'admin', NULL, '/resourceTag', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-04 19:21:51\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/公共-红旗_20251204180907A025.png\",\"id\":1,\"isDel\":0,\"name\":\"爱国主义教育\",\"params\":{},\"resourceCount\":12,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:09:08\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:09:08', 108); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1486, 1, '资源标签设置', 2, 'com.study.resource.controller.BaseResourceTagController.edit()', 'PUT', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 12:18:19\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/公共-红旗_20251204180913A026.png\",\"id\":2,\"isDel\":0,\"name\":\"共同富裕\",\"params\":{},\"resourceCount\":10,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:09:14\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:09:14', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1487, 1, '资源标签设置', 2, 'com.study.resource.controller.BaseResourceTagController.edit()', 'PUT', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 12:18:31\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/公共-红旗_20251204180920A027.png\",\"id\":3,\"isDel\":0,\"name\":\"师德师风\",\"params\":{},\"resourceCount\":6,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:09:20\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:09:20', 74); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1488, 1, '资源标签设置', 2, 'com.study.resource.controller.BaseResourceTagController.edit()', 'PUT', 1, 'admin', NULL, '/resourceTag', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 12:18:42\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/公共-红旗_20251204180926A028.png\",\"id\":4,\"isDel\":0,\"name\":\" 立德树人\",\"params\":{},\"resourceCount\":2,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:09:27\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:09:27', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1489, 1, '资源标签设置', 2, 'com.study.resource.controller.BaseResourceTagController.edit()', 'PUT', 1, 'admin', NULL, '/resourceTag', '127.0.0.1', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 12:18:54\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/公共-红旗_20251204180933A029.png\",\"id\":5,\"isDel\":0,\"name\":\" 教育公平\",\"params\":{},\"resourceCount\":1,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:09:33\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:09:33', 70); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1490, 1, '资源标签设置', 2, 'com.study.resource.controller.BaseResourceTagController.edit()', 'PUT', 1, 'admin', NULL, '/resourceTag', '0:0:0:0:0:0:0:1%0', '', '{\"createBy\":\"1\",\"createTime\":\"2025-11-05 12:19:13\",\"createUserName\":\"超级管理员\",\"iconPath\":\"/statics/2025/12/04/公共-红旗_20251204180938A030.png\",\"id\":6,\"isDel\":0,\"name\":\" 可持续发展\",\"params\":{},\"resourceCount\":1,\"schId\":1,\"updateBy\":\"1\",\"updateTime\":\"2025-12-04 18:09:39\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-04 18:09:39', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1491, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"planId\":123}],\"createBy\":\"1\",\"createTime\":\"2025-12-05 09:47:19\",\"examAddress\":\"12dfasdf\",\"examEndTime\":\"2025-12-05 11:00:00\",\"examInfoId\":1,\"examStartTime\":\"2025-12-05 10:00:00\",\"examTitle\":\"12\",\"id\":123,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 09:47:20', 1043); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1492, 17, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '13488103555', NULL, '/chapter', '0:0:0:0:0:0:0:1%0', '', '{\"courseId\":28,\"createBy\":\"123\",\"createTime\":\"2025-12-05 11:05:56\",\"id\":150,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"章节11111111\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":28,\"createBy\":\"123\",\"createTime\":\"2025-12-05 11:05:56\",\"id\":150,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":17,\"state\":1,\"subChapters\":[],\"title\":\"章节11111111\"}}', 0, NULL, '2025-12-05 11:05:56', 115); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1493, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, 'admin', NULL, '/aichatsession', '127.0.0.1', '', '{\"params\":{},\"sessionId\":1000,\"userId\":1}', NULL, 1, 'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]', '2025-12-05 11:18:10', 74); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1494, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, 'admin', NULL, '/aichatsession', '127.0.0.1', '', '{\"params\":{},\"sessionId\":1001,\"userId\":1}', NULL, 1, 'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]', '2025-12-05 14:06:02', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1495, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, 'admin', NULL, '/aichatsession', '127.0.0.1', '', '{\"createTime\":\"2025-12-05 14:10:46\",\"isDeleted\":\"o\",\"params\":{},\"sessionId\":1002,\"sessionTitle\":\"1+1\",\"userId\":1}', NULL, 1, 'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'userId\' not found. Available parameters are [arg1, arg0, param1, param2]', '2025-12-05 14:10:47', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1496, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, 'admin', NULL, '/aichatsession', '127.0.0.1', '', '{\"createTime\":\"2025-12-05 14:25:00\",\"isDeleted\":\"0\",\"params\":{},\"sessionId\":1003,\"sessionTitle\":\"1+2\",\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:25:01', 143); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1497, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, 'admin', NULL, '/aichatsession', '127.0.0.1', '', '{\"createTime\":\"2025-12-05 14:28:22\",\"isDeleted\":\"0\",\"params\":{},\"sessionId\":1004,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:28:22', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1498, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, 'admin', NULL, '/aichatsession', '127.0.0.1', '', '{\"createTime\":\"2025-12-05 14:30:17\",\"isDeleted\":\"0\",\"params\":{},\"sessionId\":1005,\"sessionTitle\":\"1+2\",\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:30:18', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1499, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, 'admin', NULL, '/aichatsession', '127.0.0.1', '', '{\"createTime\":\"2025-12-05 14:33:26\",\"isDeleted\":\"0\",\"params\":{},\"sessionId\":1006,\"sessionTitle\":\"1+2\",\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":\"2025-12-05 14:33:26\",\"isDeleted\":\"0\",\"params\":{},\"sessionId\":1006,\"sessionTitle\":\"1+2\",\"userId\":1}}', 0, NULL, '2025-12-05 14:33:26', 141); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1500, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10000,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:33:26', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1501, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1 + 2 equals **3**.\",\"messageId\":10001,\"messageType\":\"2\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:33:44', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1502, 17, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, '13488103555', NULL, '/student/editSecretKey/10', '127.0.0.1', '', '[10]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:37:47', 226); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1503, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+1\\n、\",\"messageId\":10002,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:42:03', 132); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1504, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1 + 1 = **2**\",\"messageId\":10003,\"messageType\":\"2\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:42:20', 130); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1505, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+3\",\"messageId\":10004,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:42:29', 125); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1506, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1 + 3 equals **4**.\",\"messageId\":10005,\"messageType\":\"2\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:42:30', 125); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1507, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+4\",\"messageId\":10006,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:42:39', 147); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1508, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1 + 4 equals **5**.\",\"messageId\":10007,\"messageType\":\"2\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:42:40', 229); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1509, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, 'admin', NULL, '/aichatsession', '127.0.0.1', '', '{\"createTime\":\"2025-12-05 14:49:22\",\"isDeleted\":\"0\",\"params\":{},\"sessionId\":1007,\"sessionTitle\":\"1+10\",\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":\"2025-12-05 14:49:22\",\"isDeleted\":\"0\",\"params\":{},\"sessionId\":1007,\"sessionTitle\":\"1+10\",\"userId\":1}}', 0, NULL, '2025-12-05 14:49:22', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1510, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+10\",\"messageId\":10008,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:49:22', 181); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1511, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1 + 10 equals **11**.\",\"messageId\":10009,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:49:40', 122); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1512, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+11\\n\\\\\",\"messageId\":10010,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:49:44', 126); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1513, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1 + 11 = **12**\",\"messageId\":10011,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:49:45', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1514, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1“13\",\"messageId\":10012,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:53:45', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1515, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"看起来你输入了“13”。请问你需要什么帮助?我可以为你提供关于数字13的有趣事实、文化背景,或者解答与13相关的任何问题。告诉我你的需求吧!\",\"messageId\":10013,\"messageType\":\"2\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:53:46', 112); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1516, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1006', '127.0.0.1', '', '1006', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 14:58:49', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1517, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+100\",\"messageId\":10014,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:02:08', 155); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1518, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1006', '127.0.0.1', '', '1006', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:02:08', 121); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1519, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"The sum of 1 and 100 is:\\n\\n\\\\[ 1 + 100 = 101 \\\\]\",\"messageId\":10015,\"messageType\":\"2\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:02:26', 124); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1520, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+100\",\"messageId\":10016,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:04:20', 124); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1521, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1006', '127.0.0.1', '', '1006', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:04:20', 114); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1522, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1 + 100 equals **101**.\",\"messageId\":10017,\"messageType\":\"2\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:04:21', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1523, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+200\",\"messageId\":10018,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:04:27', 117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1524, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1006', '127.0.0.1', '', '1006', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:04:27', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1525, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"The sum of 1 and 200 is:\\n\\n\\\\[ 1 + 200 = 201 \\\\]\",\"messageId\":10019,\"messageType\":\"2\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:04:42', 122); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1526, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+200\",\"messageId\":10020,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:05:25', 124); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1527, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1006', '127.0.0.1', '', '1006', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:05:25', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1528, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"The sum of 1 and 200 is:\\n\\n\\\\[ 1 + 200 = 201 \\\\]\",\"messageId\":10021,\"messageType\":\"2\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:05:26', 112); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1529, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+300\",\"messageId\":10022,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:09:20', 135); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1530, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1006', '127.0.0.1', '', '1006', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:09:20', 100); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1531, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"The sum of 1 and 300 is:\\n\\n\\\\[ 1 + 300 = 301 \\\\]\",\"messageId\":10023,\"messageType\":\"2\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:09:21', 121); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1532, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":12,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2186,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:10:54', 342); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1533, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":1,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:10:58', 315); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1534, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004],\"params\":{},\"roleId\":110,\"roleKey\":\"vvv\",\"roleName\":\"vvv\",\"roleSort\":5,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:11:02', 337); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1535, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"20131\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"userId\":110},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"userId\":110}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"67663339@.com\",\"joinTime\":\"2025-11-09\",\"loginDate\":\"2025-12-05 15:11:13\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"姜大1\",\"params\":{},\"phoneNumber\":\"18111111111\",\"remark\":\"111\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":110,\"userName\":\"18111111111\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:12:41', 594); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1536, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"AI聊天\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2007,\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:15:09', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1537, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":12,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2186,2172,2173,2005,2200,2007,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:21:10', 352); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1538, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":1,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:21:16', 326); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1539, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":0,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2085,2080,2087,2088,2089,2090,2091,2086,2009,2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007],\"params\":{},\"roleId\":110,\"roleKey\":\"vvv\",\"roleName\":\"vvv\",\"roleSort\":5,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:21:23', 333); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1540, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"20131\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"userId\":110},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"userId\":110}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"67663339@.com\",\"joinTime\":\"2025-11-09\",\"loginDate\":\"2025-12-05 15:12:50\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"姜大1\",\"params\":{},\"phoneNumber\":\"18111111111\",\"remark\":\"111\",\"roleId\":109,\"roleIds\":[109],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":110,\"userName\":\"18111111111\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:21:44', 589); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1541, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"20131\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"userId\":110},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"userId\":110}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"67663339@.com\",\"joinTime\":\"2025-11-09\",\"loginDate\":\"2025-12-05 15:12:50\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"姜大1\",\"params\":{},\"phoneNumber\":\"18111111111\",\"remark\":\"111\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":110,\"userName\":\"18111111111\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:21:51', 573); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1542, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '127.0.0.1', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:38:38', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1543, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"1+2\",\"messageId\":10024,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:38:38', 126); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1544, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"The sum of 1 and 2 is 3.\",\"messageId\":10025,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:38:41', 148); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1545, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+1000\",\"messageId\":10026,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:42:38', 108); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1546, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '0:0:0:0:0:0:0:1%0', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:42:38', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1547, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"The sum of 1 and 1000 is:\\n\\n\\\\[ 1 + 1000 = 1001 \\\\]\",\"messageId\":10027,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:42:40', 149); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1548, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2+3+...+100\",\"messageId\":10028,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:42:49', 144); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1549, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '0:0:0:0:0:0:0:1%0', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:42:49', 83); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1550, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"The sum of the first 100 natural numbers can be calculated using the formula for the sum of an arithmetic series:\\n\\n\\\\[\\nS = \\\\frac{n(n + 1)}{2}\\n\\\\]\\n\\nWhere:\\n- \\\\( n \\\\) is the number of terms (in this case, 100).\\n\\nPlugging in the value:\\n\\n\\\\[\\nS = \\\\frac{100 \\\\times 101}{2} = 50 \\\\times 101 = 5050\\n\\\\]\\n\\n**Answer:** 5050\",\"messageId\":10029,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:05', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1551, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1\",\"messageId\":10030,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:26', 128); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1552, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '127.0.0.1', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:26', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1553, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"2\",\"messageId\":10031,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:26', 112); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1554, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '127.0.0.1', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:26', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1555, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"您好!我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。有关模型和产品的详细内容请参考官方文档。\",\"messageId\":10032,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:27', 114); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1556, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"您好,请问数字“23”有什么特别的含义吗?或者您希望了解与23相关的信息?例如:\\n \\n - 23是一个常见的数字,可能代表时间、日期(如2月3日)、年龄或其他含义。\\n - 在某些文化或信仰中,数字23被认为具有特殊的意义。\\n - 您是否在某个特定情境下看到或想到这个数字?\\n \\n 如果您能提供更多背景信息,我可以更好地帮助您解答!\",\"messageId\":10033,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:28', 111); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1557, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"1\",\"messageId\":10034,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:34', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1558, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '127.0.0.1', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:34', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1559, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"您好!我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。有关模型和产品的详细内容请参考官方文档。\",\"messageId\":10035,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:35', 147); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1560, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"2\",\"messageId\":10036,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:48', 144); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1561, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '127.0.0.1', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:48', 79); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1562, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"你好!请问有什么可以帮助你的吗?\",\"messageId\":10037,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:49', 108); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1563, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1\",\"messageId\":10038,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:53', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1564, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '127.0.0.1', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:53', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1565, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"\",\"messageId\":10039,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:53', 130); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1566, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1\",\"messageId\":10040,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:53', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1567, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '127.0.0.1', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:54', 103); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1568, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"您好!请问有什么可以帮助您的?如果您有任何问题或需要信息,请随时告诉我。\",\"messageId\":10041,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:54', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1569, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"2\",\"messageId\":10042,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:55', 122); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1570, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '127.0.0.1', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:56', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1571, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"你好!请问有什么我可以帮助你的吗?\",\"messageId\":10043,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:43:56', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1572, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1\",\"messageId\":10044,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:44:04', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1573, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '127.0.0.1', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:44:04', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1574, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"你好!请问有什么我可以帮助你的吗?无论是学习、工作还是生活中的问题,都可以告诉我哦! 😊\",\"messageId\":10045,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:44:05', 115); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1575, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"1\",\"messageId\":10046,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:44:07', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1576, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '0:0:0:0:0:0:0:1%0', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:44:08', 106); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1577, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"您好!我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。有关模型和产品的详细内容请参考官方文档。\",\"messageId\":10047,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:44:09', 145); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1578, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"1\",\"messageId\":10048,\"messageType\":\"1\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:44:33', 144); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1579, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1007', '127.0.0.1', '', '1007', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:44:33', 79); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1580, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"您好!我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。有关模型和产品的详细内容请参考官方文档。\",\"messageId\":10049,\"messageType\":\"2\",\"params\":{},\"sessionId\":1007,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:44:34', 106); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1581, 17, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, '13488103555', NULL, '/todo/26', '127.0.0.1', '', '[26]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 15:49:29', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1582, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"辩证唯物主义和历史唯物主义\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10355},{\"description\":\"唯物主义和唯心主义\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10355},{\"description\":\"辩证法和形而上学\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10355},{\"description\":\"可知论和不可知论\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10355}],\"createBy\":\"1\",\"createTime\":\"2025-12-05 16:21:23\",\"id\":10355,\"params\":{},\"questionAnalysis\":\"xxx\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionCourseName\":\"-\",\"questionDesc\":\"马克思主义最根本的世界观和方法论是:\",\"questionKnowledge\":\"a,b,c\",\"questionRank\":\"0.6\",\"questionScore\":\"2\",\"questionType\":\"1\",\"schId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:21:24', 286); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1583, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, 'admin', NULL, '/aichatsession', '127.0.0.1', '', '{\"params\":{},\"sessionId\":1008,\"sessionTitle\":\"你叫什么名字啊 \",\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"params\":{},\"sessionId\":1008,\"sessionTitle\":\"你叫什么名字啊 \",\"userId\":1}}', 0, NULL, '2025-12-05 16:35:23', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1584, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"你叫什么名字啊 \",\"messageId\":10050,\"messageType\":\"1\",\"params\":{},\"sessionId\":1008,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:35:24', 103); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1585, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1008', '127.0.0.1', '', '1008', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:35:24', 74); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1586, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"您好!我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。如您有任何任何问题,我会尽我所能为您提供帮助。\",\"messageId\":10051,\"messageType\":\"2\",\"params\":{},\"sessionId\":1008,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:35:27', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1587, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, 'admin', NULL, '/aichatsession', '127.0.0.1', '', '{\"params\":{},\"sessionId\":1009,\"sessionTitle\":\"沙发沙发沙发\",\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"params\":{},\"sessionId\":1009,\"sessionTitle\":\"沙发沙发沙发\",\"userId\":1}}', 0, NULL, '2025-12-05 16:35:39', 100); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1588, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"沙发沙发沙发\",\"messageId\":10052,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:35:39', 99); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1589, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '0:0:0:0:0:0:0:1%0', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:35:39', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1590, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"好的,以下是一个简单的沙发设计灵感:\\n\\n**现代简约风格三人沙发**\\n\\n- **结构**:简洁的线条,低靠背,扶手向后倾斜,与靠背形成一体。\\n- **材质**:金属框架(如钢或铝),搭配厚实的软垫。\\n- **颜色**:中性色调(米白、灰色)为主,可搭配亮色抱枕点缀。\\n- **功能**:内置USB接口和无线充电板,方便充电需求。\\n- **尺寸**:适合三人 seating,长度约200cm,高度适中。\\n\\n这个设计注重舒适性和实用性,同时保持简洁大方的外观。希望这对你有帮助!如果需要更多细节或调整,请告诉我!\",\"messageId\":10053,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:35:43', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1591, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,6,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-20 11:09:21\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/20/17aa81e3ddcdf5cd47333f4a547b2979_20251031030306A255_20251120110843A001.png\",\"mail\":\"13488103555@qq.com\",\"manager\":\"龙小孟\",\"mgrGender\":\"0\",\"mgrPhone\":\"13488103555\",\"params\":{},\"schoolId\":17,\"schoolName\":\"陕西示范大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-12-05 16:41:49\",\"userId\":123}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:41:49', 255); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1592, 17, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, '13488103555', NULL, '/aichatsession', '127.0.0.1', '', '{\"params\":{},\"sessionId\":1010,\"sessionTitle\":\"阿达\",\"userId\":123}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"params\":{},\"sessionId\":1010,\"sessionTitle\":\"阿达\",\"userId\":123}}', 0, NULL, '2025-12-05 16:42:07', 100); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1593, 17, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, '13488103555', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"阿达\",\"messageId\":10054,\"messageType\":\"1\",\"params\":{},\"sessionId\":1010,\"userId\":123}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:42:07', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1594, 17, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, '13488103555', NULL, '/aichatsession/updateTime/1010', '127.0.0.1', '', '1010', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:42:07', 76); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1595, 17, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, '13488103555', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"您好,我是由中国的深度求索(DeepSeek)公司开发的智能助手DeepSeek-R1。有关模型和产品的详细内容请参考官方文档。\",\"messageId\":10055,\"messageType\":\"2\",\"params\":{},\"sessionId\":1010,\"userId\":123}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:42:11', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1596, 17, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, '13488103555', NULL, '/student', '127.0.0.1', '', '{\"address\":\"23ddsdsc撒旦发射点\",\"code\":\"b0001\",\"createBy\":\"13488103555\",\"createTime\":\"2025-12-05 16:52:09\",\"deptAncestors\":[\"22\",\"23\",\"24\",\"25\"],\"deptCode\":\"-\",\"deptId\":25,\"deptInfo\":\"{\\\"deptNames\\\":\\\"信息工程学院,计算机专业,2024,求真8班\\\",\\\"deptIds\\\":\\\"22,23,24,25\\\"}\",\"deptName\":\"-\",\"email\":\"13889898989@qq.com\",\"id\":15,\"joinTime\":\"2025-12-01\",\"params\":{},\"phoneNumber\":\"13889898989\",\"remark\":\"时十分士大夫似的是的\",\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userName\":\"孙权\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:52:09', 429); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1597, 21, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"code\":\"qwqwqw\",\"createBy\":\"admin\",\"createTime\":\"2025-12-05 16:54:47\",\"deptAncestors\":[\"27\",\"28\",\"29\",\"30\"],\"deptCode\":\"-\",\"deptId\":30,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治与教育,2025界,2025思政一班\\\",\\\"deptIds\\\":\\\"27,28,29,30\\\"}\",\"deptName\":\"-\",\"email\":\"12121212@qq.com\",\"id\":16,\"joinTime\":\"2025-12-05\",\"params\":{},\"phoneNumber\":\"13177777777\",\"schId\":21,\"sex\":\"0\",\"status\":\"0\",\"userName\":\"qwqwqw\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 16:54:48', 758); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1598, 21, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"121212\",\"deptClassInfoList\":[{\"deptCode\":\"bj001\",\"deptId\":30,\"deptName\":\"2025思政一班\"}],\"deptCode\":\"-\",\"deptId\":27,\"deptName\":\"-\",\"email\":\"12121212@qq.com\",\"nickName\":\"asdfsadf\",\"params\":{},\"phoneNumber\":\"13811111111\",\"roleId\":179,\"roleIds\":[179],\"schId\":21,\"sex\":\"0\",\"status\":\"0\",\"userType\":\"22\"}', '{\"msg\":\"新增用户\'null\'失败,邮箱账号已存在\",\"code\":500}', 0, NULL, '2025-12-05 16:59:04', 145); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1599, 21, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"121212\",\"deptClassInfoList\":[{\"deptCode\":\"bj001\",\"deptId\":30,\"deptName\":\"2025思政一班\"}],\"deptCode\":\"-\",\"deptId\":27,\"deptName\":\"-\",\"email\":\"12121212@qq.com\",\"nickName\":\"asdfsadf\",\"params\":{},\"phoneNumber\":\"13811111111\",\"roleId\":179,\"roleIds\":[179],\"schId\":21,\"sex\":\"0\",\"status\":\"0\",\"userType\":\"22\"}', '{\"msg\":\"新增用户\'null\'失败,邮箱账号已存在\",\"code\":500}', 0, NULL, '2025-12-05 17:02:19', 191); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1600, 21, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"121212\",\"createBy\":\"admin\",\"deptClassInfoList\":[{\"deptCode\":\"bj001\",\"deptId\":30,\"deptName\":\"2025思政一班\"}],\"deptCode\":\"-\",\"deptId\":27,\"deptName\":\"-\",\"email\":\"\",\"nickName\":\"asdfsadf\",\"params\":{},\"phoneNumber\":\"13811111111\",\"roleId\":179,\"roleIds\":[179],\"schId\":21,\"sex\":\"0\",\"status\":\"0\",\"userId\":138,\"userName\":\"13811111111\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:02:33', 534); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1601, 1, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"code\":\"12121212\",\"createBy\":\"admin\",\"createTime\":\"2025-12-05 17:04:51\",\"deptAncestors\":[\"1\",\"2\",\"4\",\"5\"],\"deptCode\":\"-\",\"deptId\":5,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育,2021级,思政2101班\\\",\\\"deptIds\\\":\\\"1,2,4,5\\\"}\",\"deptName\":\"-\",\"email\":\"\",\"id\":17,\"joinTime\":\"2025-12-05\",\"params\":{},\"phoneNumber\":\"15388888888\",\"schId\":1,\"sex\":\"0\",\"userName\":\"test111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:04:51', 507); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1602, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.updatePassword()', 'POST', 1, '王武', NULL, '/student/updatePassword', '127.0.0.1', '', '{\"id\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:13:45', 244); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1603, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.updatePassword()', 'POST', 1, '王武', NULL, '/student/updatePassword', '127.0.0.1', '', '{\"id\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:14:41', 232); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1604, 1, '教师管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/119', '0:0:0:0:0:0:0:1%0', '', '[119]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:22:44', 235); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1605, 1, '教师管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/124', '0:0:0:0:0:0:0:1%0', '', '[124]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:22:47', 252); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1606, 1, '教师管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/117', '127.0.0.1', '', '[117]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:22:50', 230); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1607, 1, '教师管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/113', '0:0:0:0:0:0:0:1%0', '', '[113]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:22:56', 251); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1608, 1, '教师管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/114', '127.0.0.1', '', '[114]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:22:59', 229); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1609, 17, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, '13488103555', NULL, '/student', '0:0:0:0:0:0:0:1%0', '', '{\"address\":\"23ddsdsc撒旦发射点\",\"code\":\"p4334344\",\"createBy\":\"13488103555\",\"createTime\":\"2025-12-05 17:29:14\",\"deptAncestors\":[\"22\",\"23\",\"24\",\"25\"],\"deptCode\":\"-\",\"deptId\":25,\"deptInfo\":\"{\\\"deptNames\\\":\\\"信息工程学院,计算机专业,2024,求真8班\\\",\\\"deptIds\\\":\\\"22,23,24,25\\\"}\",\"deptName\":\"-\",\"email\":\"13778787878@qq.com\",\"id\":18,\"joinTime\":\"2025-12-01\",\"params\":{},\"phoneNumber\":\"13778787878\",\"remark\":\"士大夫胜多负少士大夫是32\",\"schId\":17,\"sex\":\"0\",\"status\":\"0\",\"userName\":\"曹操\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:29:14', 339); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1610, 2, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"aaaaa\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":14,\"deptName\":\"-\",\"nickName\":\"aaaaaaa\",\"params\":{},\"phoneNumber\":\"15277777777\",\"roleId\":102,\"roleIds\":[102],\"schId\":2,\"sex\":\"0\",\"status\":\"0\",\"userId\":139,\"userName\":\"15277777777\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 17:39:25', 417); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1611, 17, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, '13488103555', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":0,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/12/05/ScreenShot_2025-11-26_154235_768_20251205174931A031.png\",\"createBy\":\"123\",\"createTime\":\"2025-12-05 17:49:59\",\"description\":\"

测试课件测试课件测试课件测试课件测试课件

测试课件

测试课件

测试课件

测试课件

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166_20251205174956A032.png\\\",\\\"url\\\":\\\"/statics/2025/12/05/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166_20251205174956A032.png\\\",\\\"originalName\\\":null,\\\"size\\\":5128236,\\\"metadata\\\":null,\\\"uid\\\":1764928196117,\\\"status\\\":\\\"success\\\"}]\",\"id\":71,\"name\":\"测试课件\",\"params\":{},\"premiumTypes\":\"2\",\"schId\":17,\"source\":\"\",\"sourceUrl\":\"\",\"stage\":2,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"2\",\"typeId\":4,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":0,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/12/05/ScreenShot_2025-11-26_154235_768_20251205174931A031.png\",\"createBy\":\"123\",\"createTime\":\"2025-12-05 17:49:59\",\"description\":\"

测试课件测试课件测试课件测试课件测试课件

测试课件

测试课件

测试课件

测试课件

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166_20251205174956A032.png\\\",\\\"url\\\":\\\"/statics/2025/12/05/c20ad4d76fe97759aa27a0c99bff6710_20250310154414A166_20251205174956A032.png\\\",\\\"originalName\\\":null,\\\"size\\\":5128236,\\\"metadata\\\":null,\\\"uid\\\":1764928196117,\\\"status\\\":\\\"success\\\"}]\",\"id\":71,\"name\":\"测试课件\",\"params\":{},\"premiumTypes\":\"2\",\"schId\":17,\"stage\":2,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"2\",\"typeId\":4,\"viewCount\":0}}', 0, NULL, '2025-12-05 17:49:59', 100); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1612, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/618', '127.0.0.1', '', '618', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:06:08', 123); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1613, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/606', '0:0:0:0:0:0:0:1%0', '', '606', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:06:10', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1614, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/602', '127.0.0.1', '', '602', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:06:12', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1615, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+44\",\"messageId\":10056,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:22:29', 125); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1616, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1006', '0:0:0:0:0:0:0:1%0', '', '1006', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:22:29', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1617, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Bad Gateway\",\"messageId\":10057,\"messageType\":\"3\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:22:29', 226); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1618, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+100\",\"messageId\":10058,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:23:51', 139); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1619, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:23:51', 228); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1620, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Internal Server Error\",\"messageId\":10059,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:23:51', 267); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1621, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+200\",\"messageId\":10060,\"messageType\":\"1\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:23:59', 123); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1622, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1006', '127.0.0.1', '', '1006', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:23:59', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1623, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Internal Server Error\",\"messageId\":10061,\"messageType\":\"3\",\"params\":{},\"sessionId\":1006,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-05 18:23:59', 115); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1624, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":44,\"chapterType\":101,\"content\":\"


\",\"id\":108,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-12-06 11:57:53\"},{\"chapterId\":44,\"chapterType\":102,\"content\":\"


\",\"id\":109,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-12-06 11:57:53\"},{\"chapterId\":44,\"chapterType\":2,\"content\":\"{\\\"id\\\":16,\\\"name\\\":\\\"Python编程入门导论.mp4\\\",\\\"url\\\":\\\"/statics/2025/11/05/sd1759803873_2_20251105140728A011.mp4\\\",\\\"size\\\":6611125,\\\"duration\\\":5.066667,\\\"source\\\":\\\"自主创作\\\"}\",\"id\":110,\"params\":{},\"schoolId\":1,\"updateTime\":\"2025-12-06 11:57:53\"},{\"chapterId\":44,\"chapterType\":1,\"content\":\"[{\\\"createBy\\\":\\\"1\\\",\\\"createByUserName\\\":null,\\\"createTime\\\":\\\"2025-11-26 15:33:39\\\",\\\"updateBy\\\":\\\"1\\\",\\\"updateTime\\\":\\\"2025-11-28 16:04:19\\\",\\\"remark\\\":null,\\\"keyword\\\":null,\\\"sourceVal\\\":null,\\\"id\\\":48,\\\"name\\\":\\\"测试课件222222\\\",\\\"authorId\\\":1,\\\"authorName\\\":\\\"超级管理员\\\",\\\"source\\\":\\\"1\\\",\\\"sourceUrl\\\":\\\"\\\",\\\"coverImgPath\\\":\\\"\\\",\\\"description\\\":\\\"

测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222测试课件222222

\\\",\\\"viewCount\\\":1,\\\"downloadCount\\\":0,\\\"approverId\\\":null,\\\"approvalAdvice\\\":null,\\\"fileConfig\\\":\\\"[{\\\\\\\"name\\\\\\\":\\\\\\\"课间每日一考题英语练习_20251126153335A008.pdf\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"/statics/2025/11/26/课间每日一考题英语练习_20251126153335A008.pdf\\\\\\\",\\\\\\\"originalName\\\\\\\":null,\\\\\\\"size\\\\\\\":19353929,\\\\\\\"metadata\\\\\\\":null,\\\\\\\"uid\\\\\\\":1764142415469,\\\\\\\"status\\\\\\\":\\\\\\\"success\\\\\\\"}]\\\",\\\"categoryId\\\":2,\\\"subjectId\\\":3,\\\"typeId\\\":1,\\\"stage\\\":3,\\\"tagIds\\\":\\\"1\\\",\\\"premiumTypes\\\":\\\"2\\\",\\\"approvalState\\\":2,\\\"state\\\":1,\\\"isDel\\\":0,\\\"schId\\\":1,\\\"idList\\\":null,\\\"categoryIdList\\\":null,\\\"subjectIdList\\\":null,\\\"typeIdList\\\":null,\\\"tagIdList\\\":null,\\\"schIdList\\\":null,\\\"approvalStateList\\\":null,\\\"excludeId\\\":null,\\\"createTimeIntervalNum\\\":null,\\\"createTimeIntervalUnit\\\":null,\\\"typeName\\\":\\\"课件\\\",\\\"referenceCount\\\":4,\\\"sourceName\\\":\\\"系统内置\\\",\\\"sourceId\\\":\\\"1\\\",\\\"fileSize\\\":19353929,\\\"size\\\":19353929,\\\"url\\\":\\\"\\\",\\\"type\\\":\\\"测试课件222222\\\",\\\"sysAndCurrentSchool\\\":false,\\\"currentSchoolId\\\":null},{\\\"createBy\\\":\\\"1\\\",\\\"createByUserNam', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2025-12-06 11:57:55', 1498); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1625, 1, '章节信息内容资源', 1, 'com.study.teaching.controller.BaseChapterContentResourceController.batchAdd()', 'POST', 1, 'admin', NULL, '/chapterContentResource/batchAdd', '127.0.0.1', '', '[{\"chapterId\":44,\"chapterType\":2,\"params\":{},\"resourceId\":16},{\"chapterId\":44,\"chapterType\":1,\"params\":{},\"resourceId\":48},{\"chapterId\":44,\"chapterType\":1,\"params\":{},\"resourceId\":47},{\"chapterId\":44,\"chapterType\":10,\"params\":{},\"resourceId\":58},{\"chapterId\":44,\"chapterType\":10,\"params\":{},\"resourceId\":67},{\"chapterId\":44,\"chapterType\":5,\"params\":{},\"resourceId\":29},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10328},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10327},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10318},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10322},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10326},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10325},{\"chapterId\":44,\"chapterType\":104,\"params\":{},\"questionId\":10324}]', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3}', 0, NULL, '2025-12-06 11:57:55', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1626, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '0:0:0:0:0:0:0:1%0', '', '{\"actualSendTime\":\"2025-12-06 15:19:11\",\"content\":\"

111111111111111111111111111111111111111111111111111111111

\\\"6_维吾尔族服饰_20251206151855A034.png\\\"

\",\"createBy\":\"1\",\"createTime\":\"2025-12-06 15:19:11\",\"hotspotCoverImgPath\":\"/statics/2025/12/06/bg1_20251206151843A033.jpeg\",\"hotspotSource\":\"网络\",\"id\":42,\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-12-06 15:19:11\",\"schId\":1,\"sendState\":1,\"sendType\":1,\"title\":\"杨发送的通知公告12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-06 15:19:11', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1627, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, 'admin', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":10,\"createBy\":\"1\",\"createTime\":\"2025-12-06 15:21:35\",\"id\":151,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":10,\"createBy\":\"1\",\"createTime\":\"2025-12-06 15:21:36\",\"id\":151,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"1\"}}', 0, NULL, '2025-12-06 15:21:35', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1628, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,6,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-20 11:09:21\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/20/17aa81e3ddcdf5cd47333f4a547b2979_20251031030306A255_20251120110843A001.png\",\"mail\":\"13488103555@qq.com\",\"manager\":\"龙小孟\",\"mgrGender\":\"0\",\"mgrPhone\":\"13488103555\",\"params\":{},\"schoolId\":17,\"schoolName\":\"陕西示范大学\",\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2025-12-08 10:35:31\",\"userId\":123}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 10:35:34', 271); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1629, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/568', '0:0:0:0:0:0:0:1%0', '', '568', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 10:39:53', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1630, 17, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, '13488103555', NULL, '/classSchedule/createComplete', '0:0:0:0:0:0:0:1%0', '', '{\"classSchedule\":{\"academicId\":33,\"address\":\"sfdfsdf\",\"classType\":1,\"courseId\":39,\"courseName\":\"中国精神\",\"createBy\":\"123\",\"createTime\":\"2025-12-08 11:17:38\",\"endDate\":\"2025-12-10\",\"id\":14,\"isDel\":0,\"params\":{},\"schId\":17,\"startDate\":\"2025-12-06\",\"state\":1,\"status\":2},\"orgIds\":[25],\"teacherIds\":[126],\"weekList\":[{\"classSchId\":14,\"endTime\":\"12:16\",\"params\":{},\"startTime\":\"10:16\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":14}', 0, NULL, '2025-12-08 11:17:38', 9258); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1631, 2, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, 'admin', NULL, '/todo/33', '127.0.0.1', '', '[33]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 14:21:03', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1632, 2, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"code\":\"sadfasdf\",\"createBy\":\"admin\",\"createTime\":\"2025-12-08 15:37:56\",\"deptAncestors\":[\"14\",\"15\",\"16\",\"18\"],\"deptCode\":\"-\",\"deptId\":18,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,计算机应用,2025界,C2502\\\",\\\"deptIds\\\":\\\"14,15,16,18\\\"}\",\"deptName\":\"-\",\"id\":19,\"joinTime\":\"2025-12-08\",\"params\":{},\"phoneNumber\":\"15533333333\",\"schId\":2,\"sex\":\"0\",\"userName\":\"sadfsdaf\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 15:37:56', 846); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1633, 2, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"sadfasdff\",\"createBy\":\"admin\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":14,\"deptName\":\"-\",\"nickName\":\"asdfasdfsa\",\"params\":{},\"phoneNumber\":\"15634444444\",\"roleId\":102,\"roleIds\":[102],\"schId\":2,\"sex\":\"0\",\"status\":\"0\",\"userId\":140,\"userName\":\"15634444444\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 15:38:46', 500); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1634, 2, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, 'admin', NULL, '/todo/32', '127.0.0.1', '', '[32]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 15:39:26', 72); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1635, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,6,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:14\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/10/28/360截图20250925165458_20251028185940A007.png\",\"mail\":\"mgr1@xx.com\",\"manager\":\"石大鹏\",\"mgrGender\":\"1\",\"mgrPhone\":\"13388880001\",\"params\":{},\"schoolId\":2,\"schoolName\":\"陕西研筑大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-12-08 15:44:00\",\"userId\":100}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 15:44:01', 508); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1636, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10062,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 15:46:44', 134); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1637, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 15:46:45', 165); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1638, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Internal Server Error\",\"messageId\":10063,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 15:46:45', 259); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1639, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"2+2\",\"messageId\":10064,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 15:47:11', 129); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1640, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 15:47:12', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1641, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Internal Server Error\",\"messageId\":10065,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 15:47:15', 125); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1642, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/558', '127.0.0.1', '', '558', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 16:19:18', 355); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1643, 1, '系统日志', 2, 'com.study.setting.controller.BaseSysLogController.edit()', 'PUT', 1, 'admin', NULL, '/syslog', '127.0.0.1', '', '{\"content\":\"请求参数类型不匹配,参数[schId]要求类型为:\'java.lang.Long\',但输入值为:\'undefined\'\",\"createBy\":\"admin\",\"createTime\":\"2025-12-08 16:33:19\",\"errorStack\":\"org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \\\"undefined\\\"\\r\\n\\tat org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\\r\\n\\tat org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\\r\\n\\tat org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\\r\\n\\tat org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\\r\\n\\tat org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\\r\\n\\tat org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\\r\\n\\tat org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\\r\\n\\tat org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\\r\\n\\tat org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\\r\\n\\tat org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\\r\\n\\tat org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\\r\\n\\tat org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\\r\\n\\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\\r\\n\\tat org.springframework.web.', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 16:43:35', 236); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1644, 17, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, '13488103555', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":33,\"baseExamPlanClassList\":[{\"classId\":25,\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\",\"params\":{},\"planId\":124}],\"createBy\":\"123\",\"createTime\":\"2025-12-08 17:05:51\",\"examAddress\":\"特瑞特\",\"examEndTime\":\"2025-12-10 09:45:00\",\"examInfoId\":10028,\"examStartTime\":\"2025-12-10 08:45:00\",\"examTitle\":\"考试安排发沙发\",\"id\":124,\"params\":{},\"schId\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 17:05:52', 661); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1645, 17, '考试安排', 3, 'com.study.examine.controller.BaseExamPlanController.remove()', 'DELETE', 1, '13488103555', NULL, '/examPlan/124', '0:0:0:0:0:0:0:1%0', '', '[124]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 17:05:57', 312); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1646, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,6,8\",\"createBy\":\"admin\",\"createTime\":\"2025-11-20 11:09:21\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2025/11/20/17aa81e3ddcdf5cd47333f4a547b2979_20251031030306A255_20251120110843A001.png\",\"mail\":\"13488103555@qq.com\",\"manager\":\"龙小孟\",\"mgrGender\":\"0\",\"mgrPhone\":\"13488103555\",\"params\":{},\"schoolId\":17,\"schoolName\":\"陕西示范大学\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-12-08 17:10:39\",\"userId\":123}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 17:10:39', 466); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1647, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/401', '127.0.0.1', '', '401', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 17:17:06', 114); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1648, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/424', '127.0.0.1', '', '424', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 17:17:11', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1649, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '0:0:0:0:0:0:0:1%0', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":9,\"deptCode\":\"D004\",\"deptId\":9,\"deptName\":\"思政2602班\",\"params\":{},\"planId\":125}],\"createBy\":\"1\",\"createTime\":\"2025-12-08 17:47:02\",\"examAddress\":\"1222\",\"examEndTime\":\"2025-12-09 09:45:00\",\"examInfoId\":10026,\"examStartTime\":\"2025-12-09 09:00:00\",\"examTitle\":\"c1\",\"id\":125,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 17:47:03', 512); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1650, 17, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, '13488103555', NULL, '/homework/addHomework', '0:0:0:0:0:0:0:1%0', '', '{\"classList\":[{\"children\":[],\"deptId\":25,\"params\":{}}],\"createBy\":\"123\",\"createTime\":\"2025-12-08 18:09:35\",\"estimateMark\":0,\"estimateNum\":0,\"id\":9,\"instructions\":\"

发生发射点发发生发射点发

发生发射点发

发生发射点发

发生发射点发

发生发射点发

发生发射点发

\",\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"questionCount\":7,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"辩证唯物主义和历史唯物主义\",\"id\":1038,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10355},{\"description\":\"唯物主义和唯心主义\",\"id\":1039,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10355},{\"description\":\"辩证法和形而上学\",\"id\":1040,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10355},{\"description\":\"可知论和不可知论\",\"id\":1041,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10355}],\"createBy\":\"1\",\"createTime\":\"2025-12-05 16:21:24\",\"id\":10355,\"params\":{},\"questionAnalysis\":\"xxx\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionDesc\":\"马克思主义最根本的世界观和方法论是:\",\"questionKnowledge\":\"a,b,c\",\"questionRank\":\"0.6\",\"questionScore\":\"2\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\",\"useNumber\":0},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1026,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10351},{\"description\":\"错\",\"id\":1027,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10351}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:27:19\",\"id\":10351,\"params\":{},\"questionAnalysis\":\"道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"道德是靠国家强制力保证实施的\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\",\"useNumber\":12},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1024,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"id\":1025,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":25,\"deptName\":\"求真8班\",\"params\":{},\"studentCount\":3}],\"createBy\":\"123\",\"createTime\":\"2025-12-08 18:09:35\",\"estimateMark\":0,\"estimateNum\":0,\"id\":9,\"instructions\":\"

发生发射点发发生发射点发

发生发射点发

发生发射点发

发生发射点发

发生发射点发

发生发射点发

\",\"isDel\":0,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"questionCount\":7,\"schId\":17,\"score\":32,\"singleMark\":32,\"singleNum\":7,\"status\":1,\"title\":\"龙小孟发布的作业2\"}}', 0, NULL, '2025-12-08 18:09:36', 805); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1651, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '0:0:0:0:0:0:0:1%0', '', '{\"actualSendTime\":\"2025-12-08 18:09:58\",\"content\":\"

\\\"big_20251208180851A035.jpg\\\"

近日,全国思政教育工作会议在京召开,会议深入学习贯彻习近平新时代中国特色社会主义思想, 特别是习近平总书记关于教育的重要论述,分析当前思政教育面临的新形势新任务,部署下一阶段 重点工作,为培养担当民族复兴大任的时代新人提供坚强思想政治保证。

会议指出,要坚持以习近平新时代中国特色社会主义思想为指导,全面贯彻党的教育方针,落实 立德树人根本任务,把思想政治工作贯穿教育教学全过程,实现全程育人、全方位育人,努力开创 我国高等教育事业发展新局面。

\\\"思政课是落实立德树人根本任务的关键课程,办好思政课,最根本的是要全面贯彻党的教育方针, 解决好培养什么人、怎样培养人、为谁培养人这个根本问题。\\\"

与会专家强调,新时代思政教育要坚持守正创新,既要传承好党的思想政治工作优良传统,又要 积极适应新形势新要求,不断创新教育理念、内容、方法和载体,增强思政教育的针对性和吸引力。 要推动思政小课堂与社会大课堂相结合,引导学生在实践中深化对党的创新理论的理解和把握。


核心要点

  • 坚持以习近平新时代中国特色社会主义思想为指导
  • 落实立德树人根本任务,构建德智体美劳全面培养的教育体系
  • 推动思政课改革创新,增强思政教育的时代感和吸引力
  • 加强思政教师队伍建设,提升教育教学能力
  • 推进\\\"大思政课\\\"建设,形成全社会协同育人格局

会议要求,各地各高校要认真贯彻落实本次会议精神,结合实际制定具体实施方案,切实把思想 和行动统一到党中央决策部署上来。要加强组织领导,健全工作机制,强化督促检查,确保各项 工作任务落到实处、取得实效。

与会代表表示,将以此次会议为契机,进一步增强做好新时代思政教育工作的责任感和使命感, 锐意进取、扎实工作,不断提升思政教育质量和水平,为培养德智体美劳全面发展的社会主义 建设者和接班人作出新的更大贡献。

\",\"createBy\":\"1\",\"createTime\":\"2025-12-08 18:09:58\",\"hotspotCoverImgPath\":\"\",\"hotspotSource\":\"人民日报\",\"id\":43,\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-12-08 18:09:58\",\"schId\":1,\"sendState\":1,\"sendType\":1,\"title\":\"深入学习贯彻习近平新时代中国特色社会主义思想,推动思政教育高质量发展\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 18:09:58', 58); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1652, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"actualSendTime\":\"2025-12-08 18:25:53\",\"content\":\"

Tailwind CSS 是一个实用优先的 CSS 框架,与传统的框架(如 Bootstrap、Foundation)不同,它没有预定义的组件,而是提供了一系列原子化的 CSS 类,允许你直接在 HTML 中应用样式。

Tailwind CSS 是一个工具优先的框架,意味着它提供了大量的预定义类,而不是预设的组件,这使得开发者可以构建几乎任何设计,而不需要编写 CSS。

Tailwind CSS 适合那些喜欢直接在 HTML 中使用类来控制样式的开发者,它使得快速原型制作和开发定制设计变得简单快捷。然而,它的这种\\\"无预设\\\"的方法也意味着需要更多的类名记忆和可能的陡峭学习曲线。

\\\"\\\"

核心特点:

  • 工具类优先(Utility-First):遵循工具类优先的流程,使用具有约束性的基本工具类来构建复杂的组件。
  • 响应式设计:使用响应式布局标识符(responsive modifiers),构建完全支持响应式布局的用户界面,以适应任何大小的屏幕。
  • 鼠标悬停、聚焦以及其他状态:使用条件标识符(conditional modifiers),可以为处于交互状态(如鼠标悬停、聚焦等)中的元素设置样式。
  • 夜间模式(Dark Mode):通过在HTML代码中添加夜间模式标识符(dark mode modifier),直接让你的网站支持夜间模式。
  • 重用样式:通过创建可重用的抽象来管理冗余并保持项目的可维护性。
  • 自定义整个框架:通过自定义整个框架使其匹配你的需求,使用你的自定义样式对其进行扩展。

以下是一个简单的 Tailwind CSS 实例:<div> 元素显示为一个蓝色背景、白色文字、中等内边距和大圆角的框,内容为 \\\"Hello, Tailwind CSS!\\\"。

\",\"createBy\":\"1\",\"createTime\":\"2025-12-08 18:25:53\",\"hotspotCoverImgPath\":\"\",\"hotspotSource\":\"菜鸟网\",\"id\":44,\"msgState\":1,\"msgType\":3,\"params\":{},\"publishTime\":\"2025-12-08 18:25:53\",\"schId\":1,\"sendState\":1,\"sendType\":1,\"title\":\"Tailwind CSS 简介\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 18:25:54', 132); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1653, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"content\":\"


谁适合阅读本教程?

只要您具备 HTML 和 CSS 的基础知识,您就可以阅读本教程,进而开发出自己的网站。在您学习完本教程后,您即可达到使用 Tailwind CSS 开发 Web 项目的中等水平。

阅读本教程前,您需要了解的知识:

在您开始阅读本教程之前,您必须具备 HTML 、 CSS 和 JavaScript 的基础知识。如果您还不了解这些概念,那么建议您先阅读我们的这些教程:

Tailwind CSS 实例

以下是一个简单的 Tailwind CSS 实例:


Tailwind CSS 实例

<div class=\\\"bg-blue-500 text-white p-4 rounded-lg\\\"> Hello, Tailwind CSS! </div>
尝试一下 »

以上实例展示了如何通过简单的类名快速定义一个蓝色背景、白色文字、内边距和圆角的卡片。

参考链接

Tailwind CSS 官网:https://tailwindcss.com/

Tailwind CSS 官方文档:https://tailwindcss.com/docs/



\",\"createBy\":\"1\",\"createTime\":\"2025-12-08 18:26:59\",\"hotspotCoverImgPath\":\"\",\"hotspotSource\":\"菜鸟网\",\"id\":45,\"msgState\":0,\"msgType\":3,\"params\":{},\"schId\":1,\"sendState\":0,\"sendT', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 18:26:59', 74); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1654, 1, '系统消息', 2, 'com.study.information.controller.BaseHotspotController.edit()', 'PUT', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"actualSendTime\":\"2025-12-08 18:27:17\",\"content\":\"


谁适合阅读本教程?1

只要您具备 HTML 和 CSS 的基础知识,您就可以阅读本教程,进而开发出自己的网站。在您学习完本教程后,您即可达到使用 Tailwind CSS 开发 Web 项目的中等水平。

阅读本教程前,您需要了解的知识:

在您开始阅读本教程之前,您必须具备 HTML 、 CSS 和 JavaScript 的基础知识。如果您还不了解这些概念,那么建议您先阅读我们的这些教程:

Tailwind CSS 实例

以下是一个简单的 Tailwind CSS 实例:


Tailwind CSS 实例

<div class=\\\"bg-blue-500 text-white p-4 rounded-lg\\\"> Hello, Tailwind CSS! </div>
尝试一下 »

以上实例展示了如何通过简单的类名快速定义一个蓝色背景、白色文字、内边距和圆角的卡片。

参考链接

Tailwind CSS 官网:https://tailwindcss.com/

Tailwind CSS 官方文档:https://tailwindcss.com/docs/



\",\"createBy\":\"1\",\"createTime\":\"2025-12-08 18:27:00\",\"creatorName\":\"超级管理员\",\"hotspotCoverImgPath\":\"\",\"hotspotSource\":\"菜鸟网1\",\"id\":45,\"isD', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 18:27:17', 83); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1655, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '127.0.0.1', '', '{\"content\":\"

如果只想简单体验,可以直接引入 CDN 链接:

使用官网提供的 CDN 库,地址如下:

<script src=\\\"https://cdn.tailwindcss.com\\\"></script>

使用 jsDelivr 的 CDN 库,地址如下:

<link href=\\\"https://cdn.jsdelivr.net/npm/tailwindcss@3.3.0/dist/tailwind.min.css\\\" rel=\\\"stylesheet\\\">

使用这种方式使用:

  • 优点:无需配置,适合快速开发和演示。
  • 缺点:不能自定义样式,文件体积较大。

使用实例

以下实例输出了 Hello, world!


实例

<!doctype html> <html> <head如果只想简单体验,可以直接引入 CDN 链接:

使用官网提供的 CDN 库,地址如下:

<script src=\\\"https://cdn.tailwindcss.com\\\"></script>

使用 jsDelivr 的 CDN 库,地址如下:

<link href=\\\"https://cdn.jsdelivr.net/npm/tailwindcss@3.3.0/dist/tailwind.min.css\\\" rel=\\\"stylesheet\\\">

使用这种方式使用:

  • 优点:无需配置,适合快速开发和演示。1
  • 缺点:不能自定义样式,文件体积较大。

使用实例

以下实例输出了 Hello, world!


实例

<!doctype html> <html> <head如果只想简单体验,可以直接引入 CDN 链接:

使用官网提供的 CDN 库,地址如下:

<script src=\\\"https://cdn.tailwindcss.com\\\"></script>

使用 jsDelivr 的 CDN 库,地址如下:

<link href=\\\"https://cdn.jsdelivr.net/npm/tailwindcss@3.3.0/dist/tailwind.min.css\\\" rel=\\\"stylesheet\\\">

使用这种方式使用:

  • 优点:无需配置,适合快速开发和演示。1
  • 缺点:不能自定义样式,文件体积较大。

使用实例

以下实例输出了 Hello, world!


实例

<!doctype html> <html> <head如果只想简单体验,可以直接引入 CDN 链接:

使用官网提供的 CDN 库,地址如下:

<script src=\\\"https://cdn.tailwindcss.com\\\"></script>

使用 jsDelivr 的 CDN 库,地址如下:

<link href=\\\"https://cdn.jsdelivr.net/npm/tailwindcss@3.3.0/dist/tailwind.min.css\\\" rel=\\\"stylesheet\\\">

使用这种方式使用:

  • 优点:无需配置,适合快速开发和演示。1
  • 缺点:不能自定义样式,文件体积较大。

使用实例

以下实例输出了 Hello, world!


实例

<!doctype html> <html> <在开始之前,确保你已经安装了 Node.js 和 npm,你可以通过以下命令检查它们是否已经安装:

node -v\\nnpm -v

如果你的系统还不支持 Node.js 及 NPM 可以参考我们的 Node.js 教程

国内使用 npm 速度很慢,你可以使用淘宝定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm:

$ npm install -g cnpm --registry=https://registry.npmmirror.com\\n$ npm config set registry https://registry.npmmirror.com

这样就可以使用 cnpm 命令来安装模块了:

$ cnpm install [name]

更多信息可以查阅:http://npm.taobao.org/



安装 Tailwind CSS

与 Tailwind CSS 3 相比较,Tailwind CSS 4 自动检测 HTML 和 JavaScript 等文件,省去了手动配置内容源的麻烦。

npm 安装

从零开始使用 Tailwind CSS 的最简单和最快方法是通过 Tailwind CLI 工具。

通过 npm 安装 在本地项目中安装并配置 Tailwind CSS:

npm install tailwindcss @tailwindcss/cli

1、在 CSS 中导入 Tailwind: 在 CSS 文件中添加 @import \\\"tailwindcss\\\";

比如在 src/input.css 文件开头导入:


src/input.css 文件

@import \\\"tailwindcss\\\";

2、启动 Tailwind CLI 构建流程:运行 CLI 工具以扫描源文件中的类并构建 CSS。

npx @tailwindcss/cli -i ./src/input.css -o ./src/output.css --watch

在开始之前,确保你已经安装了 Node.js 和 npm,你可以通过以下命令检查它们是否已经安装:

node -v\\nnpm -v

如果你的系统还不支持 Node.js 及 NPM 可以参考我们的 Node.js 教程

国内使用 npm 速度很慢,你可以使用淘宝定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm:

$ npm install -g cnpm --registry=https://registry.npmmirror.com\\n$ npm config set registry https://registry.npmmirror.com

这样就可以使用 cnpm 命令来安装模块了:

$ cnpm install [name]

更多信息可以查阅:http://npm.taobao.org/



安装 Tailwind CSS 3

本章节是 Tailwind CSS 3 的安装方式,,Tailwind CSS 4 安装方式有所改变, 会自动检测 HTML 和 JavaScript 等文件,省去了手动配置内容源的麻烦。详细内容参见:Tailwind CSS4 安装。

通过 npm 安装 在本地项目中安装并配置 Tailwind CSS:

npm install -D tailwindcss\\nnpx tailwindcss init

执行以上命令后,会生成一个基础配置文件 tailwind.config.js,供定制使用。

配置模板路径

接下来我们可以在 tailwind.config.js 文件中添加模版的路径:


tailwind.config.js 文件代码:

/** @type {import(\'tailwindcss\').Config} */
module.exports = {
  content: [\\\"./src/**/', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-08 18:31:06', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1661, 1, '系统消息', 1, 'com.study.information.controller.BaseHotspotController.add()', 'POST', 1, 'admin', NULL, '/hotspot', '0:0:0:0:0:0:0:1%0', '', '{\"actualSendTime\":\"2025-12-08 18:31:39\",\"content\":\"

Tailwind CSS 是一个高度可定制的 CSS 框架,它提供了一套预定义的工具类,允许开发者快速构建和设计用户界面。

以下是 Tailwind CSS 的一些基础概念和用法:

概念说明
工具类 (Utility-First)Tailwind CSS 的核心是工具类,用于快速设置样式,直接应用到 HTML 元素上。
响应式前缀使用如 sm:, md:, lg:, xl: 的前缀来控制不同屏幕尺寸下的样式。
颜色和尺寸提供了预定义的颜色(如 bg-red-500)和尺寸(如 text-lg)来快速设置样式。
间距 (Spacing)通过 p-, m-, pt-, pr- 等类控制内边距和外边距。
布局 (Layout)提供 flex, grid, float 等类来实现布局控制。
文本样式包括文本对齐、字体样式、颜色和转换的实用类,如 text-center, font-bold, uppercase
背景和边框提供背景颜色、背景图片、边框样式和颜色的工具类,如 bg-gray-200, border-red-500
Tailwind CSS 的核心配置文件为 tailwind.config.js

tailwind.config.js 是 Tailwind CSS 的配置文件,用于定制化 Tailwind 的默认配置。

通过修改 tailwind.config.js 文件,开发者可以自定义颜色、间距、字体、断点等设计系统,满足特定项目需求。

创建配置文件

使用 Tailwind CSS 的 CLI 工具可以快速生成一个基础的 tailwind.config.js 文件。

在项目根目录下运行以下命令:

npx tailwindcss init

这将创建一个包含基本配置的 tailwind.config.js 文件。

基本结构

以下是一个典型的 tailwind.config.js 文件的结构:


实例

/** @type {import(\'tailwindcss\').Config} */
module.exports = {
  content: [\\\"./src/**/*.{html,js,vue}\\\"], // 定义需要扫描的模板文件路径
  theme: {
    extend: {}, // 自定义扩展
},
  plugins: Tailwind CSS 的工具类(Utility-First)是一种以实用为先的设计方法,它允许开发者直接在 HTML 元素上应用预定义的样式类,而无需编写传统的 CSS 代码。

Tailwind CSS 的核心理念是 工具类优先(Utility-First),这一设计思想意味着,你可以通过组合单一功能的 CSS 类来实现一个完整的样式,而不是依赖于复杂的自定义样式。

Tailwind CSS 提供了大量的工具类,每个类都执行一个简单的样式任务,例如,text-center 用来将文本居中,bg-blue-500 用来设置背景颜色,p-4 用来设置内边距等。

常见的工具类:

类别工具类示例描述
排版(Typography)text-center, text-lg, font-bold控制文本的对齐、字体大小、粗细等。
背景(Background)bg-blue-500, bg-opacity-50设置元素的背景颜色、背景图和透明度。
间距(Spacing)p-4, m-2, mt-8控制元素的内外边距(padding 和 margin)。
布局(Layout)Tailwind CSS 提供了强大的状态类(状态修饰符),用于控制元素在不同交互状态下的样式变化。

Tailwind CSS 提供了多种状态类(如 hover:, focus:, active: 等)来帮助开发者快速处理交互效果,通过组合这些状态类,你可以非常简便地实现悬停、聚焦、点击等状态下的样式变化,提高用户体验。

状态类的前缀:

状态前缀作用
悬停状态hover:控制元素在鼠标悬停时的样式变化
聚焦状态focus:控制元素在获得焦点时的样式变化
激活状态active:控制元素在被点击时的样式变化
访问状态visited:控制访问过的链接的样式变化
焦点内状态focus-within:控制父元素在其子元素获得焦点时的样式变化
各状态组合无特定前缀可以同时组合多个状态前缀,如 hover:, focus:,以及 active:

测试作业44444

测试作业44444

测试作业44444

测试作业44444

测试作业44444

\",\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"questionCount\":3,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1026,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10351},{\"description\":\"错\",\"id\":1027,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10351}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:27:19\",\"id\":10351,\"params\":{},\"questionAnalysis\":\"道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"道德是靠国家强制力保证实施的\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\",\"useNumber\":13},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1024,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"id\":1025,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\",\"useNumber\":18},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\",\"useNumber\":17}],\"schId\":17,\"score\":15,\"singleMark\":15,\"singleNum\":3,\"status\":1,\"title\":\"测试作业44444\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":25,\"deptName\":\"求真8班\",\"params\":{},\"studentCount\":3}],\"createBy\":\"13488103555\",\"createTime\":\"2025-12-09 15:32:41\",\"estimateMark\":0,\"estimateNum\":0,\"id\":10,\"instructions\":\"

测试作业44444

测试作业44444

测试作业44444

测试作业44444

测试作业44444

\",\"isDel\":0,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"questionCount\":3,\"schId\":17,\"score\":15,\"singleMark\":15,\"singleNum\":3,\"status\":1,\"title\":\"测试作业44444\"}}', 0, NULL, '2025-12-09 15:32:41', 728); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1676, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/458', '127.0.0.1', '', '458', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 15:33:21', 173); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1677, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/458', '0:0:0:0:0:0:0:1%0', '', '458', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 15:33:22', 80); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1678, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/458', '0:0:0:0:0:0:0:1%0', '', '458', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 15:33:23', 80); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1679, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/327', '127.0.0.1', '', '327', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 15:33:26', 78); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1680, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/458', '127.0.0.1', '', '458', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 15:33:50', 81); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1681, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/444', '127.0.0.1', '', '444', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 15:52:24', 105); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1682, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":1,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2016,2017,2018,2019,2020,2015,2010,2011,2001,2022,2023,2024,2025,2026,2053,2021,2028,2029,2030,2031,2032,2027,2034,2035,2036,2037,2038,2033,2059,2060,2061,2062,2063,2058,2128,2129,2130,2131,2132,2127,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:05:08', 318); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1683, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"20131\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"userId\":110},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"userId\":110}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"67663339@.com\",\"joinTime\":\"2025-11-09\",\"loginDate\":\"2025-12-09 15:33:48\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"姜大1\",\"params\":{},\"phoneNumber\":\"18111111111\",\"remark\":\"111\",\"roleId\":109,\"roleIds\":[109],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":110,\"userName\":\"18111111111\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:05:21', 603); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1684, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 16:53:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2001,\"menuName\":\"用户系统\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":2000,\"path\":\"/userSys\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:09:01', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1685, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2011', '127.0.0.1', '', '2011', '{\"msg\":\"菜单已分配,不允许删除\",\"code\":601}', 0, NULL, '2025-12-09 16:09:08', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1686, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:00:41\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2011,\"menuName\":\"角色权限\",\"menuType\":\"M\",\"orderNum\":3,\"params\":{},\"parentId\":2001,\"path\":\"/roleMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:09:30', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1687, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:00:17\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2010,\"menuName\":\"人员管理\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":2001,\"path\":\"/usrMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:09:47', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1688, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"system/academic/index\",\"createTime\":\"2025-10-31 15:24:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2080,\"menuName\":\"学年学期设置\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2009,\"path\":\"academic\",\"perms\":\"system:academic:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:10:10', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1689, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"setting/organization/index\",\"createTime\":\"2025-11-01 10:28:34\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2086,\"menuName\":\"组织结构设置\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2009,\"path\":\"organization\",\"perms\":\"setting:organization:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:10:19', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1690, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 16:54:35\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2002,\"menuName\":\"思政教学\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":2000,\"path\":\"/teachingSys\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:10:40', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1691, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:01:15\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2012,\"menuName\":\"上课管理\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":2002,\"path\":\"/courseMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"修改菜单\'上课管理\'失败,菜单名称已存在\",\"code\":500}', 0, NULL, '2025-12-09 16:12:27', 31); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1692, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:01:36\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2013,\"menuName\":\"上课管理2\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":2002,\"path\":\"/homeworkMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:12:43', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1693, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:01:15\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2012,\"menuName\":\"上课管理\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":2002,\"path\":\"/courseMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:12:49', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1694, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching/chapter/index\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2021,\"menuName\":\"科目章节\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2012,\"path\":\"chapter\",\"perms\":\"teaching:chapter:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:13:06', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1695, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching/course/index\",\"createTime\":\"2025-10-24 17:52:39\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2027,\"menuName\":\"课程信息\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2012,\"path\":\"course\",\"perms\":\"teaching:course:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:13:16', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1696, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching/review/index\",\"createTime\":\"2025-10-24 17:53:00\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2033,\"menuName\":\"课程审核\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2012,\"path\":\"review\",\"perms\":\"teaching:review:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:13:26', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1697, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching/chapterContent/index\",\"createTime\":\"2025-10-29 16:15:43\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2058,\"menuName\":\"章节内容信息\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2012,\"path\":\"chapterContent\",\"perms\":\"teaching:chapterContent:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:13:36', 97); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1698, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching/chapterContentResource/index\",\"createTime\":\"2025-11-08 17:05:25\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2127,\"menuName\":\"章节信息内容资源\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2012,\"path\":\"chapterContentResource\",\"perms\":\"teaching:chapterContentResource:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:13:41', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1699, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:01:36\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2013,\"menuName\":\"课程管理\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":2002,\"path\":\"/homeworkMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:13:53', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1700, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching/classSchedule/index\",\"createTime\":\"2025-11-13 14:39:33\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2180,\"menuName\":\"上课安排\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2013,\"path\":\"classSchedule\",\"perms\":\"teaching:classSchedule:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:14:06', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1701, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching-progress\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"授课进度\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2013,\"path\":\"teaching-progress\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:14:45', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1702, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"课程统计\",\"menuType\":\"M\",\"orderNum\":3,\"params\":{},\"parentId\":2013,\"path\":\"course-statistics\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:15:12', 99); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1703, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:15:12\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2202,\"menuName\":\"课程统计\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2013,\"path\":\"course-statistics\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:15:22', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1704, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"course-statistics\",\"createTime\":\"2025-12-09 16:15:12\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2202,\"menuName\":\"课程统计\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2013,\"path\":\"course-statistics\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:15:33', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1705, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"导出\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2202,\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:16:06', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1706, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-13 14:39:33\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2181,\"menuName\":\"上课安排查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2180,\"path\":\"#\",\"perms\":\"teaching:classSchedule:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:17:06', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1707, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-13 14:39:33\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2182,\"menuName\":\"上课安排新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2180,\"path\":\"#\",\"perms\":\"teaching:classSchedule:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:17:13', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1708, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-13 14:39:33\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2183,\"menuName\":\"上课安排修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2180,\"path\":\"#\",\"perms\":\"teaching:classSchedule:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:17:17', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1709, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-13 14:39:33\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2184,\"menuName\":\"上课安排删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2180,\"path\":\"#\",\"perms\":\"teaching:classSchedule:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:17:22', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1710, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-13 14:39:33\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2185,\"menuName\":\"上课安排导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2180,\"path\":\"#\",\"perms\":\"teaching:classSchedule:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:17:27', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1711, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-31 15:24:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2081,\"menuName\":\"学年学期设置查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2080,\"path\":\"#\",\"perms\":\"system:academic:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:21:05', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1712, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-31 15:24:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2081,\"menuName\":\"学年学期设置查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2080,\"path\":\"#\",\"perms\":\"system:academic:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:21:19', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1713, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-31 15:24:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2082,\"menuName\":\"学年学期设置新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2080,\"path\":\"#\",\"perms\":\"system:academic:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:21:39', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1714, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-31 15:24:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2083,\"menuName\":\"学年学期设置修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2080,\"path\":\"#\",\"perms\":\"system:academic:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:21:45', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1715, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-31 15:24:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2085,\"menuName\":\"学年学期设置导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2080,\"path\":\"#\",\"perms\":\"system:academic:export\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:21:54', 101); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1716, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-31 15:24:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2084,\"menuName\":\"学年学期设置删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2080,\"path\":\"#\",\"perms\":\"system:academic:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:22:03', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1717, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2085', '127.0.0.1', '', '2085', '{\"msg\":\"菜单已分配,不允许删除\",\"code\":601}', 0, NULL, '2025-12-09 16:23:59', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1718, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-01 10:28:34\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2091,\"menuName\":\"组织信息导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2086,\"path\":\"#\",\"perms\":\"setting:organization:export\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:42:27', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1719, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-01 10:28:34\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2087,\"menuName\":\"组织结构设置查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2086,\"path\":\"#\",\"perms\":\"setting:organization:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:42:41', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1720, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-01 10:28:34\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2088,\"menuName\":\"组织结构设置新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2086,\"path\":\"#\",\"perms\":\"setting:organization:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:42:47', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1721, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-01 10:28:34\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2089,\"menuName\":\"组织结构设置修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2086,\"path\":\"#\",\"perms\":\"setting:organization:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:42:52', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1722, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-01 10:28:34\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2090,\"menuName\":\"组织结构设置删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2086,\"path\":\"#\",\"perms\":\"setting:organization:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:43:00', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1723, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-01 10:28:34\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2091,\"menuName\":\"组织结构设置导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2086,\"path\":\"#\",\"perms\":\"setting:organization:export\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:43:05', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1724, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"studentManage\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"学生管理\",\"menuType\":\"C\",\"orderNum\":0,\"params\":{},\"parentId\":2010,\"path\":\"studentManage\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:44:22', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1725, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"列表\",\"menuType\":\"F\",\"orderNum\":0,\"params\":{},\"parentId\":2204,\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:45:03', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1726, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:45:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2205,\"menuName\":\"学生管理列表\",\"menuType\":\"F\",\"orderNum\":0,\"params\":{},\"parentId\":2204,\"path\":\"\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:45:21', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1727, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:45:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2205,\"menuName\":\"学生管理查询\",\"menuType\":\"F\",\"orderNum\":0,\"params\":{},\"parentId\":2204,\"path\":\"\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:45:30', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1728, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"学生管理增加\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2204,\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:45:44', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1729, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"学生管理修改\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2204,\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:46:02', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1730, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"学生管理删除\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2204,\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:46:17', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1731, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"学生管理导入\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2204,\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:46:33', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1732, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"学生管理导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2204,\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:46:44', 83); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1733, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"学生管理批量重置密码\",\"menuType\":\"F\",\"orderNum\":6,\"params\":{},\"parentId\":2204,\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:47:17', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1734, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:45:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2205,\"menuName\":\"学生管理查询\",\"menuType\":\"F\",\"orderNum\":0,\"params\":{},\"parentId\":2204,\"path\":\"\",\"perms\":\"setting:studmgr:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:48:00', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1735, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:45:44\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2206,\"menuName\":\"学生管理增加\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2204,\"path\":\"\",\"perms\":\"setting:studmgr:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:48:08', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1736, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:46:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2207,\"menuName\":\"学生管理修改\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2204,\"path\":\"\",\"perms\":\"setting:studmgr:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:48:14', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1737, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:46:17\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2208,\"menuName\":\"学生管理删除\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2204,\"path\":\"\",\"perms\":\"setting:studmgr:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:48:29', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1738, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:46:33\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2209,\"menuName\":\"学生管理导入\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2204,\"path\":\"\",\"perms\":\"setting:studmgr:import\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:48:37', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1739, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:46:44\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2210,\"menuName\":\"学生管理导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2204,\"path\":\"\",\"perms\":\"setting:studmgr:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:48:51', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1740, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:47:17\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2211,\"menuName\":\"学生管理批量重置密码\",\"menuType\":\"F\",\"orderNum\":6,\"params\":{},\"parentId\":2204,\"path\":\"\",\"perms\":\"setting:studmgr:batresetpwd\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:49:14', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1741, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"studentManage\",\"createTime\":\"2025-12-09 16:44:22\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2204,\"menuName\":\"学生管理\",\"menuType\":\"C\",\"orderNum\":0,\"params\":{},\"parentId\":2010,\"path\":\"/studentManage\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:49:49', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1742, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"studentManage\",\"createTime\":\"2025-12-09 16:44:22\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2204,\"menuName\":\"学生管理\",\"menuType\":\"C\",\"orderNum\":0,\"params\":{},\"parentId\":2010,\"path\":\"studentManage\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:50:08', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1743, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"教师管理\",\"menuType\":\"F\",\"orderNum\":6,\"params\":{},\"parentId\":2015,\"perms\":\"system:teacher:import\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:51:39', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1744, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:51:39\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2212,\"menuName\":\"教师管理导出\",\"menuType\":\"F\",\"orderNum\":6,\"params\":{},\"parentId\":2015,\"path\":\"\",\"perms\":\"system:teacher:import\",\"routeName\":\"\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"修改菜单\'教师管理导出\'失败,菜单名称已存在\",\"code\":500}', 0, NULL, '2025-12-09 16:51:54', 28); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1745, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:51:39\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2212,\"menuName\":\"教师管理导入\",\"menuType\":\"F\",\"orderNum\":6,\"params\":{},\"parentId\":2015,\"path\":\"\",\"perms\":\"system:teacher:import\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:52:04', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1746, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"教师管理批量重置密码\",\"menuType\":\"F\",\"orderNum\":7,\"params\":{},\"parentId\":2016,\"perms\":\"system:teacher:batresetpwd\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:52:58', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1747, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"教师管理批量重置密码\",\"menuType\":\"F\",\"orderNum\":7,\"params\":{},\"parentId\":2015,\"perms\":\"system:teacher:batresetpwd\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:54:10', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1748, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":6,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2080,2087,2088,2089,2086,2009,2205,2206,2207,2208,2209,2210,2204,2016,2017,2018,2019,2020,2212,2015,2010,2001,2022,2023,2024,2025,2026,2053,2021,2034,2035,2036,2037,2038,2033,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2186,2172,2173,2005,2200,2007,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2011,2027,2028,2029,2030,2031,2032,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055,2058,2059,2060,2061,2062,2063,2085,2091,2127,2128,2129,2130,2131,2132],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 16:55:56', 339); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1749, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":6,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2080,2087,2088,2089,2086,2009,2205,2206,2207,2208,2209,2210,2204,2016,2017,2018,2019,2020,2212,2015,2010,2001,2022,2023,2024,2025,2026,2053,2021,2034,2035,2036,2037,2038,2033,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2186,2172,2173,2005,2200,2007,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2011,2027,2028,2029,2030,2031,2032,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055,2058,2059,2060,2061,2062,2063,2085,2091,2127,2128,2129,2130,2131,2132],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 17:05:24', 329); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1750, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2080,2087,2086,2009,2205,2204,2016,2015,2010,2001,2022,2023,2024,2025,2026,2053,2021,2034,2035,2036,2037,2038,2033,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 17:05:45', 318); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1751, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2080,2087,2086,2009,2205,2204,2016,2015,2010,2001,2022,2023,2024,2025,2026,2053,2021,2034,2035,2036,2037,2038,2033,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 17:19:36', 305); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1752, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"studentManage\",\"createTime\":\"2025-12-09 16:44:22\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2204,\"menuName\":\"学生管理\",\"menuType\":\"C\",\"orderNum\":0,\"params\":{},\"parentId\":2010,\"path\":\"studentManage\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 17:21:51', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1753, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"system/student/index\",\"createTime\":\"2025-12-09 16:44:22\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2204,\"menuName\":\"学生管理\",\"menuType\":\"C\",\"orderNum\":0,\"params\":{},\"parentId\":2010,\"path\":\"studentManage\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 17:22:46', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1754, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"system/student/index\",\"createTime\":\"2025-12-09 16:44:22\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2204,\"menuName\":\"学生管理\",\"menuType\":\"C\",\"orderNum\":0,\"params\":{},\"parentId\":2010,\"path\":\"studentManage\",\"perms\":\"setting:studmgr:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 17:23:35', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1755, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2080,2087,2086,2009,2205,2204,2016,2015,2010,2001,2022,2023,2024,2025,2026,2053,2021,2034,2035,2036,2037,2038,2033,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 17:31:39', 321); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1756, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2205,2204,2016,2015,2010,2001,2022,2023,2024,2025,2026,2053,2021,2034,2035,2036,2037,2038,2033,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 17:38:08', 326); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1757, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2016,2015,2010,2001,2022,2023,2024,2025,2026,2053,2021,2034,2035,2036,2037,2038,2033,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 17:38:22', 324); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1758, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2023,2024,2025,2026,2053,2021,2034,2035,2036,2037,2038,2033,2012,2181,2182,2183,2184,2185,2180,2013,2188,2189,2190,2191,2192,2187,2194,2195,2196,2197,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-09 17:38:33', 320); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1759, 1, '基础题库', 1, 'com.study.examine.controller.BaseExamQuestionController.add()', 'POST', 1, 'admin', NULL, '/examQuestion', '127.0.0.1', '', '{\"baseExamQuestionResultList\":[{\"description\":\"12\",\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10356},{\"description\":\"22\",\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10356},{\"description\":\"444\",\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10356},{\"description\":\"asdf\",\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10356}],\"createBy\":\"1\",\"createTime\":\"2025-12-10 09:59:46\",\"id\":10356,\"params\":{},\"questionAnalysis\":\"aa\",\"questionAnswer\":\"A\",\"questionCourseName\":\"-\",\"questionDesc\":\"asdfasdf\",\"questionRank\":\"0.8\",\"questionScore\":\"2\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 09:59:47', 620); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1760, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2022,\"menuName\":\"科目章节查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chapter:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:34:29', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1761, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2023,\"menuName\":\"科目章节新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chapter:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:34:35', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1762, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2024,\"menuName\":\"科目章节修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chapter:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:34:43', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1763, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2025,\"menuName\":\"科目章节删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chapter:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:34:48', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1764, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2026,\"menuName\":\"科目章节导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chapter:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:34:54', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1765, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-28 10:55:20\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2053,\"menuName\":\"科目章节导入\",\"menuType\":\"F\",\"orderNum\":6,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chapter:import\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:35:00', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1766, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2023,\"menuName\":\"科目章节创建课程\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:course:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:38:33', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1767, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2024,\"menuName\":\"科目章节修改课程\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:course:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:38:56', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1768, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2025,\"menuName\":\"科目章节删除课程\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:course:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:39:12', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1769, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"科目章节增加章节\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2021,\"perms\":\"teaching:chapter:add\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:40:00', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1770, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"科目章节修改章节\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2021,\"perms\":\"teaching:chapter:edit\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:41:15', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1771, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-10 10:40:00\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2215,\"menuName\":\"科目章节增加章节\",\"menuType\":\"F\",\"orderNum\":10,\"params\":{},\"parentId\":2021,\"path\":\"\",\"perms\":\"teaching:chapter:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:41:50', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1772, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-10 10:41:15\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2216,\"menuName\":\"科目章节修改章节\",\"menuType\":\"F\",\"orderNum\":11,\"params\":{},\"parentId\":2021,\"path\":\"\",\"perms\":\"teaching:chapter:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:42:00', 265); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1773, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"科目章节删除章节\",\"menuType\":\"F\",\"orderNum\":12,\"params\":{},\"parentId\":2021,\"perms\":\"teaching:chapter:remove\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:43:02', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1774, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2025,\"menuName\":\"科目章节删除课程\",\"menuType\":\"F\",\"orderNum\":13,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:course:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:43:13', 83); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1775, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2025,\"menuName\":\"科目章节删除课程\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:course:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:43:25', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1776, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2026,\"menuName\":\"科目章节导出章节\",\"menuType\":\"F\",\"orderNum\":14,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chapter:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:43:45', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1777, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-28 10:55:20\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2053,\"menuName\":\"科目章节导入章节\",\"menuType\":\"F\",\"orderNum\":13,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chapter:import\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:43:55', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1778, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:53:00\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2035,\"menuName\":\"课程审核记录新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2033,\"path\":\"#\",\"perms\":\"teaching:review:add\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:44:32', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1779, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:53:00\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2036,\"menuName\":\"课程审核记录修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2033,\"path\":\"#\",\"perms\":\"teaching:review:edit\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:44:38', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1780, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:53:00\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2037,\"menuName\":\"课程审核记录删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2033,\"path\":\"#\",\"perms\":\"teaching:review:remove\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:44:43', 82); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1781, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"课程审核批量审核\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2033,\"perms\":\"teaching:review:batchreview\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:46:05', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1782, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, 'admin', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"test\",\"classType\":1,\"courseId\":40,\"courseName\":\"中国精神009\",\"createBy\":\"1\",\"createTime\":\"2025-12-10 10:47:48\",\"endDate\":\"2026-03-31\",\"id\":15,\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2026-01-01\",\"state\":1,\"status\":2},\"orgIds\":[5,6,8,9],\"teacherIds\":[2,110,115,116,125,137],\"weekList\":[{\"classSchId\":15,\"endTime\":\"12:50\",\"params\":{},\"startTime\":\"10:50\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":15}', 0, NULL, '2025-12-10 10:47:49', 10724); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1783, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-13 14:39:33\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2185,\"menuName\":\"上课安排导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2180,\"path\":\"#\",\"perms\":\"teaching:classSchedule:export\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:48:25', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1784, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"上课安排编辑课程内容\",\"menuType\":\"F\",\"orderNum\":6,\"params\":{},\"parentId\":2180,\"perms\":\"teaching:classSchedule:editchapter\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:49:15', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1785, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching-progress\",\"createTime\":\"2025-12-09 16:14:45\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2201,\"menuName\":\"授课进度\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2013,\"path\":\"teaching-progress\",\"perms\":\"teaching:progress:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:50:39', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1786, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"授课进度查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2201,\"perms\":\"teaching:progress:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:51:10', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1787, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"授课进度导出\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2201,\"perms\":\"teaching:progress:export\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:51:36', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1788, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2221', '127.0.0.1', '', '2221', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:51:58', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1789, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"course-statistics\",\"createTime\":\"2025-12-09 16:15:12\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2202,\"menuName\":\"课程统计\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2013,\"path\":\"course-statistics\",\"perms\":\"teaching:coursestatistics:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:52:44', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1790, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:16:06\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2203,\"menuName\":\"导出\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2202,\"path\":\"\",\"perms\":\"teaching:coursestatistics:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:52:59', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1791, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:16:06\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2203,\"menuName\":\"课程统计导出\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2202,\"path\":\"\",\"perms\":\"teaching:coursestatistics:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:53:13', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1792, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching/studentHomeWork/index\",\"createTime\":\"2025-12-01 15:22:27\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2193,\"menuName\":\"作业统计\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2014,\"path\":\"studentHomeWork\",\"perms\":\"teaching:studentHomeWork:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:53:48', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1793, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"/teaching/practicework/index\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"实践作业\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2014,\"path\":\"practicework\",\"perms\":\"teaching:practicework:list\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:56:05', 127); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1794, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching/studentHomeWork/index\",\"createTime\":\"2025-12-01 15:22:27\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2193,\"menuName\":\"作业统计\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2014,\"path\":\"studentHomeWork\",\"perms\":\"teaching:studentHomeWork:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:56:12', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1795, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"teaching/studentHomeWork/index\",\"createTime\":\"2025-12-01 15:22:27\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2193,\"menuName\":\"作业统计\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2014,\"path\":\"studentHomeWork\",\"perms\":\"teaching:studentHomeWork:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:56:19', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1796, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"/teaching/practicework/index\",\"createTime\":\"2025-12-10 10:56:05\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2222,\"menuName\":\"实践作业\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2014,\"path\":\"practicework\",\"perms\":\"teaching:practicework:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:56:25', 248); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1797, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-12-01 15:22:28\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2195,\"menuName\":\"作业统计新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2193,\"path\":\"#\",\"perms\":\"teaching:studentHomeWork:add\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:57:13', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1798, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-12-01 15:22:28\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2196,\"menuName\":\"作业统计修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2193,\"path\":\"#\",\"perms\":\"teaching:studentHomeWork:edit\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:57:18', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1799, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-12-01 15:22:28\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2197,\"menuName\":\"作业统计删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2193,\"path\":\"#\",\"perms\":\"teaching:studentHomeWork:remove\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:57:24', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1800, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-12-01 15:22:28\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2198,\"menuName\":\"作业统计导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2193,\"path\":\"#\",\"perms\":\"teaching:studentHomeWork:export\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:57:28', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1801, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-12-01 15:22:28\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2198,\"menuName\":\"作业统计导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2193,\"path\":\"#\",\"perms\":\"teaching:studentHomeWork:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:57:33', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1802, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-12-09 16:16:06\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2203,\"menuName\":\"课程统计导出\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2202,\"path\":\"\",\"perms\":\"teaching:coursestatistics:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:58:28', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1803, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"课程统计查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2202,\"perms\":\"teaching:coursestatistics:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:58:47', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1804, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 10:59:06', 346); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1805, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:02:25\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2014,\"menuName\":\"作业管理\",\"menuType\":\"M\",\"orderNum\":3,\"params\":{},\"parentId\":2002,\"path\":\"/teachHomeWorkMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 11:10:28', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1806, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":6,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2080,2087,2088,2089,2086,2009,2205,2206,2207,2208,2209,2210,2204,2016,2017,2018,2019,2020,2212,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2176,2177,2178,2179,2175,2186,2172,2173,2005,2200,2007,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055,2058,2059,2060,2061,2062,2063,2085,2091,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 11:19:05', 321); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1807, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 11:27:18', 323); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1808, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2180,2220,2201,2223,2203,2202,2013,2188,2189,2187,2194,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 11:27:49', 303); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1809, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 14:12:37', 311); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1810, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 14:27:22', 318); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1811, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"20131\",\"createBy\":\"admin\",\"createTime\":\"2025-11-08 10:12:37\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"userId\":110},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"userId\":110}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"67663339@.com\",\"joinTime\":\"2025-11-09\",\"loginDate\":\"2025-12-10 14:19:23\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"姜大1\",\"params\":{},\"phoneNumber\":\"18111111111\",\"remark\":\"111\",\"roleId\":109,\"roleIds\":[109],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":110,\"userName\":\"18111111111\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 14:28:52', 602); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1812, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 14:29:11', 330); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1813, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 14:30:18', 321); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1814, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":8,\"deptCode\":\"D003\",\"deptId\":8,\"deptName\":\"思政2601班\",\"params\":{},\"planId\":129}],\"createBy\":\"1\",\"createTime\":\"2025-12-10 15:03:37\",\"examAddress\":\"sksksk\",\"examEndTime\":\"2025-12-11 10:00:00\",\"examInfoId\":10021,\"examStartTime\":\"2025-12-11 09:00:00\",\"examTitle\":\"二年级数学期末\",\"id\":129,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:03:39', 2461); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1815, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"planId\":130}],\"createBy\":\"1\",\"createTime\":\"2025-12-10 15:04:56\",\"examAddress\":\"asdf\",\"examEndTime\":\"2025-12-12 10:00:00\",\"examInfoId\":10021,\"examStartTime\":\"2025-12-12 09:00:00\",\"examTitle\":\"二年级语文上学期周末\",\"id\":130,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:04:56', 449); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1816, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2023,\"menuName\":\"科目章节创建课程\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chaptercourse:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:12:36', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1817, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2024,\"menuName\":\"科目章节修改课程\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chaptercourse:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:12:43', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1818, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-10-24 17:52:14\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2025,\"menuName\":\"科目章节删除课程\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2021,\"path\":\"#\",\"perms\":\"teaching:chaptercourse:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:12:47', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1819, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:15:35', 341); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1820, 1, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '18111111111', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

2222

\",\"courseState\":1,\"courseType\":\"1,2,3,4\",\"coverUrl\":\"/statics/2025/12/10/quanjing_20251210151603A001.jpg\",\"createBy\":\"110\",\"createTime\":\"2025-12-10 15:16:16\",\"id\":41,\"isUse\":1,\"label\":\"测试01\",\"name\":\"我的测试课程111\",\"params\":{},\"resource\":\"[]\",\"reviewState\":1,\"schoolId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:16:17', 100); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1821, 1, '课程信息', 2, 'com.study.teaching.controller.BaseCourseController.batchReview()', 'POST', 1, '18111111111', NULL, '/course/batchReview', '127.0.0.1', '', '{\"courseIds\":[41],\"params\":{},\"reviewDesc\":\"11111\",\"reviewState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:16:53', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1822, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '18111111111', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":41,\"createBy\":\"110\",\"createTime\":\"2025-12-10 15:17:11\",\"id\":196,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"11111\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":41,\"createBy\":\"110\",\"createTime\":\"2025-12-10 15:17:12\",\"id\":196,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"11111\"}}', 0, NULL, '2025-12-10 15:17:12', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1823, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '18111111111', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":41,\"createBy\":\"110\",\"createTime\":\"2025-12-10 15:17:24\",\"id\":197,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"2222\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":41,\"createBy\":\"110\",\"createTime\":\"2025-12-10 15:17:24\",\"id\":197,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"2222\"}}', 0, NULL, '2025-12-10 15:17:24', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1824, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '18111111111', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":41,\"createBy\":\"110\",\"createTime\":\"2025-12-10 15:17:36\",\"id\":198,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":196,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"aaaaaa\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":41,\"createBy\":\"110\",\"createTime\":\"2025-12-10 15:17:36\",\"id\":198,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":2,\"params\":{},\"pid\":196,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"aaaaaa\"}}', 0, NULL, '2025-12-10 15:17:36', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1825, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '18111111111', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":41,\"createBy\":\"110\",\"createTime\":\"2025-12-10 15:17:41\",\"id\":199,\"isOpen\":1,\"level\":2,\"params\":{},\"pid\":196,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"bbbb\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":41,\"createBy\":\"110\",\"createTime\":\"2025-12-10 15:17:42\",\"id\":199,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":2,\"params\":{},\"pid\":196,\"refCount\":0,\"schoolId\":1,\"subChapters\":[],\"title\":\"bbbb\"}}', 0, NULL, '2025-12-10 15:17:41', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1826, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/248', '127.0.0.1', '', '248', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:20:03', 188); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1827, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/376', '127.0.0.1', '', '376', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:20:15', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1828, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/376', '127.0.0.1', '', '376', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:20:18', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1829, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/376', '127.0.0.1', '', '376', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:20:19', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1830, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/376', '127.0.0.1', '', '376', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:20:20', 103); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1831, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/285', '127.0.0.1', '', '285', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:21:09', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1832, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/618', '127.0.0.1', '', '618', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:25:09', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1833, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/242', '127.0.0.1', '', '242', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:25:32', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1834, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/606', '127.0.0.1', '', '606', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:25:39', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1835, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/602', '127.0.0.1', '', '602', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:25:42', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1836, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/499', '127.0.0.1', '', '499', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:25:57', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1837, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:29:52', 322); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1838, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:42:12', 311); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1839, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, '18111111111', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"gaga\",\"classType\":1,\"courseId\":42,\"courseName\":\"中国精神009\",\"createBy\":\"110\",\"createTime\":\"2025-12-10 15:55:51\",\"endDate\":\"2026-03-31\",\"id\":16,\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2026-01-01\",\"state\":1,\"status\":2},\"orgIds\":[5,6,8,9],\"teacherIds\":[2,110,115,116,125,137],\"weekList\":[{\"classSchId\":16,\"endTime\":\"18:45\",\"params\":{},\"startTime\":\"15:44\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":16}', 0, NULL, '2025-12-10 15:55:52', 10600); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1840, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2094,2095,2096,2097,2093,2100,2101,2102,2103,2104,2099,2106,2107,2108,2109,2110,2105,2092,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 15:57:16', 363); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1841, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-11-03 12:05:42\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2092,\"menuName\":\"资源分类管理\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":2003,\"path\":\"/resourceCategoryMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:04:04', 104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1842, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"资源管理查询\",\"menuType\":\"F\",\"orderNum\":0,\"params\":{},\"parentId\":2118,\"perms\":\"resource:resource:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:17:12', 99); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1843, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"资源审核查询\",\"menuType\":\"F\",\"orderNum\":0,\"params\":{},\"parentId\":2123,\"perms\":\"resource:approval:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:17:43', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1844, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"资源统计查询\",\"menuType\":\"F\",\"orderNum\":0,\"params\":{},\"parentId\":2124,\"perms\":\"resource:statistics:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:18:13', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1845, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2224,2118,2225,2123,2226,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:18:26', 536); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1846, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2224,2118,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:22:20', 335); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1847, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2224,2118,2225,2123,2226,2124,2117,2003,2135,2136,2137,2138,2139,2134,2147,2148,2149,2150,2151,2146,2153,2154,2155,2156,2157,2152,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2165,2166,2167,2168,2169,2164,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:22:34', 330); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1848, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examQuestion/index\",\"createTime\":\"2025-11-10 10:16:10\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2146,\"menuName\":\"基础题库\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2170,\"path\":\"examQuestion\",\"perms\":\"examine:examQuestion:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:26:15', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1849, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examQuestionResult/index\",\"createTime\":\"2025-11-10 10:16:17\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2152,\"menuName\":\"题库问题\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2170,\"path\":\"examQuestionResult\",\"perms\":\"examine:examQuestionResult:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:26:20', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1850, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examInfo/index\",\"createTime\":\"2025-11-10 10:15:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2134,\"menuName\":\"题库管理\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2170,\"path\":\"examInfo\",\"perms\":\"examine:examInfo:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:27:12', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1851, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:15:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2135,\"menuName\":\"题库管理查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2134,\"path\":\"#\",\"perms\":\"examine:examInfo:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:27:25', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1852, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:15:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2136,\"menuName\":\"题库管理新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2134,\"path\":\"#\",\"perms\":\"examine:examInfo:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:27:32', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1853, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:15:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2137,\"menuName\":\"题库管理修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2134,\"path\":\"#\",\"perms\":\"examine:examInfo:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:27:37', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1854, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:15:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2138,\"menuName\":\"题库管理删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2134,\"path\":\"#\",\"perms\":\"examine:examInfo:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:27:42', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1855, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:15:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2139,\"menuName\":\"题库管理导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2134,\"path\":\"#\",\"perms\":\"examine:examInfo:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:27:48', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1856, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"题库管理导入\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2134,\"perms\":\"examine:examInfo:import\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:28:51', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1857, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:15:54\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2139,\"menuName\":\"题库管理导出\",\"menuType\":\"F\",\"orderNum\":6,\"params\":{},\"parentId\":2134,\"path\":\"#\",\"perms\":\"examine:examInfo:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:28:58', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1858, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/AiQuesion/index\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"AI出题\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2170,\"path\":\"AiQuesion\",\"perms\":\"examine:aiquesion:list\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:30:27', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1859, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"AI出题主界面\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2228,\"perms\":\"examine:aiquesion:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:31:01', 96); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1860, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/questionAnalysis/index\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"题库分析\",\"menuType\":\"C\",\"orderNum\":3,\"params\":{},\"parentId\":2170,\"path\":\"questionAnalysis\",\"perms\":\"examine:questionAnalysis:list\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:32:05', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1861, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"题库分析列表\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2230,\"perms\":\"examine:questionAnalysis:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:32:30', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1862, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examStudent/index\",\"createTime\":\"2025-11-10 10:16:24\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2158,\"menuName\":\"用户试卷\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2171,\"path\":\"examStudent\",\"perms\":\"examine:examStudent:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:36:00', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1863, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examStudentResult/index\",\"createTime\":\"2025-11-10 10:16:33\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2164,\"menuName\":\"用户试卷结果\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2171,\"path\":\"examStudentResult\",\"perms\":\"examine:examStudentResult:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:36:05', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1864, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examInfoQuestion/index\",\"createTime\":\"2025-11-10 10:16:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2140,\"menuName\":\"试卷管理\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2171,\"path\":\"examInfoQuestion\",\"perms\":\"examine:examInfoQuestion:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:36:44', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1865, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:16:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2141,\"menuName\":\"试卷管理查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2140,\"path\":\"#\",\"perms\":\"examine:examInfoQuestion:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:37:01', 107); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1866, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:16:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2142,\"menuName\":\"试卷管理新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2140,\"path\":\"#\",\"perms\":\"examine:examInfoQuestion:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:37:12', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1867, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:16:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2143,\"menuName\":\"试卷管理修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2140,\"path\":\"#\",\"perms\":\"examine:examInfoQuestion:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:37:17', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1868, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:16:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2144,\"menuName\":\"试卷管理删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2140,\"path\":\"#\",\"perms\":\"examine:examInfoQuestion:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:37:23', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1869, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:16:02\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2145,\"menuName\":\"试卷管理导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2140,\"path\":\"#\",\"perms\":\"examine:examInfoQuestion:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:37:28', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1870, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examStudent/index\",\"createTime\":\"2025-11-10 10:16:24\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2158,\"menuName\":\"用户试卷\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2171,\"path\":\"examStudent\",\"perms\":\"examine:examStudent:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:38:15', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examStudent/index\",\"createTime\":\"2025-11-10 10:16:24\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2158,\"menuName\":\"考试安排\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2171,\"path\":\"examStudent\",\"perms\":\"examine:examStudent:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:38:21', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1872, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:16:24\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2159,\"menuName\":\"考试安排查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2158,\"path\":\"#\",\"perms\":\"examine:examStudent:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:38:31', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1873, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:16:24\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2160,\"menuName\":\"考试安排新增\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2158,\"path\":\"#\",\"perms\":\"examine:examStudent:add\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:38:36', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1874, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:16:24\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2161,\"menuName\":\"考试安排修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2158,\"path\":\"#\",\"perms\":\"examine:examStudent:edit\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:38:45', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:16:24\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2162,\"menuName\":\"考试安排删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2158,\"path\":\"#\",\"perms\":\"examine:examStudent:remove\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:38:50', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"\",\"createTime\":\"2025-11-10 10:16:25\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2163,\"menuName\":\"考试安排导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2158,\"path\":\"#\",\"perms\":\"examine:examStudent:export\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:38:55', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examMonitoring\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"考试监控\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2171,\"path\":\"examMonitoring\",\"perms\":\"examine:examMonitoring:list\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:41:32', 384); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"考试监控列表\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2232,\"perms\":\"examine:examMonitoring:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:42:11', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"考试监控导出\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2232,\"perms\":\"examine:examMonitoring:export\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:42:54', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1880, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/scoreQuery/index\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"成绩查询\",\"menuType\":\"C\",\"orderNum\":5,\"params\":{},\"parentId\":2171,\"path\":\"scoreQuery\",\"perms\":\"examine:scoreQuery:list\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:46:06', 123); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1881, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/examMonitoring/index\",\"createTime\":\"2025-12-10 16:41:32\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2232,\"menuName\":\"考试监控\",\"menuType\":\"C\",\"orderNum\":4,\"params\":{},\"parentId\":2171,\"path\":\"examMonitoring\",\"perms\":\"examine:examMonitoring:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:46:24', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1882, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"成绩查询列表\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2235,\"perms\":\"examine:scoreQuery:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:47:24', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1883, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"成绩查询导出\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2235,\"perms\":\"examine:scoreQuery:export\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:48:52', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1884, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"examine/testPaperAnalysis/index\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"试卷分析\",\"menuType\":\"C\",\"orderNum\":6,\"params\":{},\"parentId\":2171,\"path\":\"testPaperAnalysis\",\"perms\":\"examine:testPaperAnalysis:list\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:50:03', 99); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1885, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"试卷分析列表\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2238,\"perms\":\"examine:testPaperAnalysis:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 16:50:42', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1886, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2224,2118,2225,2123,2226,2124,2117,2003,2135,2136,2137,2138,2227,2139,2134,2229,2228,2231,2230,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2233,2234,2232,2236,2237,2235,2239,2238,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 17:11:37', 323); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2224,2118,2225,2123,2226,2124,2117,2003,2135,2134,2231,2230,2170,2141,2140,2159,2158,2233,2232,2236,2235,2239,2238,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 17:18:14', 325); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"information/notice/index\",\"createTime\":\"2025-11-13 16:33:12\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2186,\"menuName\":\"思政公告\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2172,\"path\":\"notice\",\"perms\":\"information:notice:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 17:21:35', 83); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"information/hotnewsPublish/index\",\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"思政热点发布\",\"menuType\":\"C\",\"orderNum\":1,\"params\":{},\"parentId\":2173,\"path\":\"hotnewsPublish\",\"perms\":\"information:hotnewspublish:list\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 17:24:10', 117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"思政热点发布查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2240,\"perms\":\"information:hotnewspublish:query\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 17:24:49', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"思政热点发布增加\",\"menuType\":\"F\",\"orderNum\":2,\"params\":{},\"parentId\":2240,\"perms\":\"information:hotnewspublish:add\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 17:25:13', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"思政热点发布修改\",\"menuType\":\"F\",\"orderNum\":3,\"params\":{},\"parentId\":2240,\"perms\":\"information:hotnewspublish:edit\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 17:25:46', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1893, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"思政热点发布删除\",\"menuType\":\"F\",\"orderNum\":4,\"params\":{},\"parentId\":2240,\"perms\":\"information:hotnewspublish:remove\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 17:26:11', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1894, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"思政热点发布导出\",\"menuType\":\"F\",\"orderNum\":5,\"params\":{},\"parentId\":2240,\"perms\":\"information:hotnewspublish:export\",\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 17:41:33', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1895, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2214,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2224,2118,2225,2123,2226,2124,2117,2003,2135,2134,2231,2230,2170,2141,2140,2159,2158,2233,2232,2236,2235,2239,2238,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-10 17:50:19', 356); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1896, 17, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, '13488103555', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":33,\"address\":\"asdfsadf\",\"classType\":1,\"courseId\":43,\"courseName\":\"改革开放四十周年成就展\",\"createBy\":\"123\",\"createTime\":\"2025-12-10 18:11:50\",\"endDate\":\"2026-01-31\",\"id\":17,\"isDel\":0,\"params\":{},\"schId\":17,\"startDate\":\"2025-12-01\",\"state\":1,\"status\":2},\"orgIds\":[25],\"teacherIds\":[127],\"weekList\":[{\"classSchId\":17,\"endTime\":\"10:10\",\"params\":{},\"startTime\":\"09:10\",\"weekInfo\":1},{\"classSchId\":17,\"endTime\":\"10:10\",\"params\":{},\"startTime\":\"09:10\",\"weekInfo\":4}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":17}', 0, NULL, '2025-12-10 18:11:50', 3536); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1897, 17, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, '13488103555', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":33,\"address\":\"asdfasdf\",\"classType\":1,\"courseId\":44,\"courseName\":\"中国精神\",\"createBy\":\"123\",\"createTime\":\"2025-12-11 09:57:59\",\"endDate\":\"2026-01-11\",\"id\":18,\"isDel\":0,\"params\":{},\"schId\":17,\"startDate\":\"2025-12-08\",\"state\":1,\"status\":2},\"orgIds\":[26],\"teacherIds\":[127],\"weekList\":[{\"classSchId\":18,\"endTime\":\"10:00\",\"params\":{},\"startTime\":\"09:00\",\"weekInfo\":1},{\"classSchId\":18,\"endTime\":\"10:00\",\"params\":{},\"startTime\":\"09:00\",\"weekInfo\":2}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":18}', 0, NULL, '2025-12-11 09:58:01', 10578); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1898, 1, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/12/11/quanjing_20251211101142A001.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-12-11 10:13:03\",\"description\":\"

11111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"中硕思政-需求说明书(4)_20251211101301A002.pdf\\\",\\\"url\\\":\\\"/statics/2025/12/11/中硕思政-需求说明书(4)_20251211101301A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":5290893,\\\"metadata\\\":null,\\\"uid\\\":1765419180901,\\\"status\\\":\\\"success\\\"}]\",\"id\":72,\"name\":\"我的测试课程003\",\"params\":{},\"premiumTypes\":\"4,3,2,1\",\"schId\":1,\"source\":\"2\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"3,2,4,1,5,6\",\"typeId\":1,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/12/11/quanjing_20251211101142A001.jpg\",\"createBy\":\"1\",\"createTime\":\"2025-12-11 10:13:03\",\"description\":\"

11111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"中硕思政-需求说明书(4)_20251211101301A002.pdf\\\",\\\"url\\\":\\\"/statics/2025/12/11/中硕思政-需求说明书(4)_20251211101301A002.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":5290893,\\\"metadata\\\":null,\\\"uid\\\":1765419180901,\\\"status\\\":\\\"success\\\"}]\",\"id\":72,\"name\":\"我的测试课程003\",\"params\":{},\"premiumTypes\":\"4,3,2,1\",\"schId\":1,\"source\":\"2\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"3,2,4,1,5,6\",\"typeId\":1,\"viewCount\":0}}', 0, NULL, '2025-12-11 10:13:03', 156); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1899, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, '18111111111', NULL, '/aichatsession', '127.0.0.1', '', '{\"params\":{},\"sessionId\":1011,\"sessionTitle\":\"1+2\",\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"params\":{},\"sessionId\":1011,\"sessionTitle\":\"1+2\",\"userId\":110}}', 0, NULL, '2025-12-11 10:39:41', 143); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1900, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, '18111111111', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10066,\"messageType\":\"1\",\"params\":{},\"sessionId\":1011,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 10:39:41', 120); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1901, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, '18111111111', NULL, '/aichatsession/updateTime/1011', '127.0.0.1', '', '1011', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 10:39:41', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1902, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, '18111111111', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Internal Server Error\",\"messageId\":10067,\"messageType\":\"3\",\"params\":{},\"sessionId\":1011,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 10:39:41', 112); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1903, 17, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, '13488103555', NULL, '/examPlan', '0:0:0:0:0:0:0:1%0', '', '{\"academicId\":33,\"baseExamPlanClassList\":[{\"classId\":25,\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\",\"params\":{},\"planId\":131}],\"createBy\":\"123\",\"createTime\":\"2025-12-11 10:55:31\",\"examAddress\":\"公司的事发生的\",\"examEndTime\":\"2025-12-11 15:45:00\",\"examInfoId\":10027,\"examStartTime\":\"2025-12-11 14:15:00\",\"examTitle\":\"考试安排555\",\"id\":131,\"params\":{},\"schId\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 10:55:32', 504); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1904, 17, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, '13488103555', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"收到\",\"messageId\":10068,\"messageType\":\"1\",\"params\":{},\"sessionId\":1010,\"userId\":123}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 10:56:08', 124); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1905, 17, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, '13488103555', NULL, '/aichatsession/updateTime/1010', '127.0.0.1', '', '1010', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 10:56:08', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1906, 17, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, '13488103555', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Bad Gateway\",\"messageId\":10069,\"messageType\":\"3\",\"params\":{},\"sessionId\":1010,\"userId\":123}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 10:56:35', 110); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1907, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":2,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":true,\"menuIds\":[2081,2080,2087,2086,2009,2205,2204,2016,2015,2010,2001,2022,2021,2034,2033,2012,2181,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2224,2118,2225,2123,2226,2124,2117,2003,2135,2134,2231,2230,2170,2141,2140,2159,2158,2233,2232,2236,2235,2239,2238,2171,2004,2200,2007,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2195,2196,2197],\"params\":{},\"roleId\":109,\"roleKey\":\"123a\",\"roleName\":\"123a\",\"roleSort\":4,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 11:35:13', 310); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1908, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":1,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 13:46:10\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 13:46:10', 105); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1909, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 13:52:23\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/11/01/logo1_20251101151129A002.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 13:52:24', 69); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1910, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 15:32:34\",\"description\":\"

无aasdasdasasdas

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"id\":67,\"isDel\":0,\"name\":\"新疆图书\",\"params\":{},\"premiumTypes\":\"4\",\"referenceCount\":6,\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":10,\"typeName\":\"图书\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-11 13:52:41\",\"viewCount\":10}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/28/6_维吾尔族服饰_20251128153110A015.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 15:32:34\",\"description\":\"

无aasdasdasasdas

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/招标文件-甘肃医学院思政课实践教学系统购置项目(定稿) _20251128153228A016.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":1941907,\\\"metadata\\\":null,\\\"uid\\\":1764315149037,\\\"status\\\":\\\"success\\\"}]\",\"id\":67,\"isDel\":0,\"name\":\"新疆图书\",\"params\":{},\"premiumTypes\":\"4\",\"referenceCount\":6,\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":10,\"typeName\":\"图书\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-11 13:52:41\",\"viewCount\":10}}', 0, NULL, '2025-12-11 13:52:41', 75); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1911, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/28/logo1_20251128115157A009.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:59:09\",\"description\":\"

资源简洁展厅士大夫士大夫

adasdads

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":222985657,\\\"metadata\\\":null,\\\"uid\\\":1764302347115,\\\"status\\\":\\\"success\\\"}]\",\"id\":65,\"isDel\":0,\"name\":\"test\",\"params\":{},\"premiumTypes\":\"1,4\",\"referenceCount\":3,\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-11 13:52:57\",\"viewCount\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":1,\"coverImgPath\":\"/statics/2025/11/28/logo1_20251128115157A009.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:59:09\",\"description\":\"

资源简洁展厅士大夫士大夫

adasdads

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/28/Node.js硬实战 115个核心技巧_20251128115906A010.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":222985657,\\\"metadata\\\":null,\\\"uid\\\":1764302347115,\\\"status\\\":\\\"success\\\"}]\",\"id\":65,\"isDel\":0,\"name\":\"test\",\"params\":{},\"premiumTypes\":\"1,4\",\"referenceCount\":3,\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":1,\"typeName\":\"课件\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-11 13:52:57\",\"viewCount\":2}}', 0, NULL, '2025-12-11 13:52:57', 75); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1912, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '0:0:0:0:0:0:0:1%0', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:45:32\",\"description\":\"

哈哈哈哈

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\",\\\"originalName\\\":\\\"第一章红色虚拟展馆.zip\\\",\\\"size\\\":146428201,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1764301392734,\\\"status\\\":\\\"success\\\"}]\",\"id\":64,\"isDel\":0,\"name\":\"第一章 红色展厅介绍\",\"params\":{},\"premiumTypes\":\"1,4\",\"referenceCount\":4,\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":9,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-11 13:53:08\",\"viewCount\":7}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/28/bg1_20251128114043A007.jpeg\",\"createBy\":\"1\",\"createTime\":\"2025-11-28 11:45:32\",\"description\":\"

哈哈哈哈

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/virtualSimulation/2025/11/28/第一章红色虚拟展馆_20251128114310A008/index.html\\\",\\\"originalName\\\":\\\"第一章红色虚拟展馆.zip\\\",\\\"size\\\":146428201,\\\"metadata\\\":\\\"virtualSimulation\\\",\\\"uid\\\":1764301392734,\\\"status\\\":\\\"success\\\"}]\",\"id\":64,\"isDel\":0,\"name\":\"第一章 红色展厅介绍\",\"params\":{},\"premiumTypes\":\"1,4\",\"referenceCount\":4,\"schId\":1,\"source\":\"1\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":9,\"typeName\":\"虚拟仿真展馆\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-11 13:53:08\",\"viewCount\":7}}', 0, NULL, '2025-12-11 13:53:08', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1913, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126175139A033.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 17:52:16\",\"description\":\"

测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/26/思想道德与法治-第一章-第一节_20251126175211A034/index.html\\\",\\\"originalName\\\":\\\"思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1764150732088,\\\"status\\\":\\\"success\\\"}]\",\"id\":60,\"isDel\":0,\"name\":\"测试展馆111111111111\",\"params\":{},\"premiumTypes\":\"4\",\"referenceCount\":1,\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":3,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"2\",\"typeId\":7,\"typeName\":\"全景\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-11 13:53:18\",\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126175139A033.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 17:52:16\",\"description\":\"

测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111测试展馆111111111111

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"index.html\\\",\\\"url\\\":\\\"/statics/panorama/2025/11/26/思想道德与法治-第一章-第一节_20251126175211A034/index.html\\\",\\\"originalName\\\":\\\"思想道德与法治-第一章-第一节.zip\\\",\\\"size\\\":19729476,\\\"metadata\\\":\\\"panorama\\\",\\\"uid\\\":1764150732088,\\\"status\\\":\\\"success\\\"}]\",\"id\":60,\"isDel\":0,\"name\":\"测试展馆111111111111\",\"params\":{},\"premiumTypes\":\"4\",\"referenceCount\":1,\"schId\":1,\"source\":\"1\",\"stage\":3,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"2\",\"typeId\":7,\"typeName\":\"全景\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-11 13:53:18\",\"viewCount\":0}}', 0, NULL, '2025-12-11 13:53:18', 75); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1914, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/327', '0:0:0:0:0:0:0:1%0', '', '327', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:00:44', 122); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1915, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:00:48\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:00:48', 147); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1916, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '刘备', NULL, '/messageRel/read/285', '0:0:0:0:0:0:0:1%0', '', '285', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:00:50', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1917, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:25:44\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:25:45', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1918, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":1,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:26:05\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:26:06', 58); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1919, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:27:08\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:27:08', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1920, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:28:20\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:28:20', 82); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1921, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:28:34\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:28:34', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1922, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:28:45\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:28:45', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1923, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:28:52\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:28:52', 66); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1924, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:29:04\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:29:04', 68); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1925, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:29:14\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:29:14', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1926, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":1,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:29:37\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:29:37', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1927, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:30:07\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:30:07', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1928, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司11111111

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:30:17\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:30:17', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1929, 1, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.edit()', 'PUT', 1, 'admin', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155244A028.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:53:26\",\"description\":\"

测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126155321A029.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155321A029.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764143602160,\\\"status\\\":\\\"success\\\"}]\",\"id\":59,\"isDel\":0,\"name\":\"测试图书2222222222\",\"params\":{},\"premiumTypes\":\"4\",\"referenceCount\":0,\"schId\":1,\"source\":\"1\",\"sourceUrl\":\"\",\"stage\":2,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"3\",\"typeId\":10,\"typeName\":\"图书\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-11 14:34:13\",\"viewCount\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":2,\"authorId\":1,\"authorName\":\"超级管理员\",\"categoryId\":2,\"coverImgPath\":\"/statics/2025/11/26/ScreenShot_2025-11-26_155133_415_20251126155244A028.png\",\"createBy\":\"1\",\"createTime\":\"2025-11-26 15:53:26\",\"description\":\"

测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222测试图书2222222222

\",\"downloadCount\":0,\"fileConfig\":\"[{\\\"name\\\":\\\"寒门诡将12局+(伏羲)_20251126155321A029.pdf\\\",\\\"url\\\":\\\"/statics/2025/11/26/寒门诡将12局+(伏羲)_20251126155321A029.pdf\\\",\\\"originalName\\\":null,\\\"size\\\":888915,\\\"metadata\\\":null,\\\"uid\\\":1764143602160,\\\"status\\\":\\\"success\\\"}]\",\"id\":59,\"isDel\":0,\"name\":\"测试图书2222222222\",\"params\":{},\"premiumTypes\":\"4\",\"referenceCount\":0,\"schId\":1,\"source\":\"1\",\"stage\":2,\"state\":1,\"subjectId\":2,\"sysAndCurrentSchool\":false,\"tagIds\":\"3\",\"typeId\":10,\"typeName\":\"图书\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-11 14:34:13\",\"viewCount\":3}}', 0, NULL, '2025-12-11 14:34:13', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1930, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":1,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:39:58\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:39:58', 80); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1931, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:40:29\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:40:30', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1932, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:43:12\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:43:12', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1933, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:44:27\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:44:27', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1934, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:44:39\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:44:39', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1935, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:45:24\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:45:24', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1936, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:46:16\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:46:16', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1937, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:46:25\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:46:25', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1938, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:46:49\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:46:50', 57); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1939, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:49:21\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:49:22', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1940, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:51:41\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:51:41', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1941, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 14:51:59\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 14:52:00', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1942, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 15:42:17\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 15:42:17', 62); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1943, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 15:43:26\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 15:43:26', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1944, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 15:43:56\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 15:43:57', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1945, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 15:44:03\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 15:44:03', 58); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1946, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 15:44:11\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 15:44:11', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1947, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":0,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 15:49:47\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 15:49:47', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1948, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 15:50:35\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 15:50:35', 61); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1949, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '0:0:0:0:0:0:0:1%0', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 15:50:47\",\"vxQrCodeDisplay\":0,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 15:50:47', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1950, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":0,\"appQrCodeImgPath\":\"/statics/2025/12/11/u3475_20251211140044A005.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-11 15:51:24\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 15:51:24', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1951, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":5,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2016,2017,2018,2019,2020,2015,2010,2001,2022,2023,2024,2025,2053,2026,2021,2034,2038,2033,2012,2181,2182,2183,2184,2180,2220,2201,2223,2202,2013,2188,2187,2194,2193,2014,2002,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 16:10:35', 333); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1952, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":5,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2016,2017,2018,2019,2020,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 16:11:06', 340); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1953, 17, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, '13566776677', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":25,\"params\":{}}],\"createBy\":\"127\",\"createTime\":\"2025-12-11 16:12:56\",\"estimateMark\":0,\"estimateNum\":0,\"id\":11,\"instructions\":\"

11111

\",\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"questionCount\":4,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"辩证唯物主义和历史唯物主义\",\"id\":1038,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10355},{\"description\":\"唯物主义和唯心主义\",\"id\":1039,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10355},{\"description\":\"辩证法和形而上学\",\"id\":1040,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10355},{\"description\":\"可知论和不可知论\",\"id\":1041,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10355}],\"createBy\":\"1\",\"createTime\":\"2025-12-05 16:21:24\",\"id\":10355,\"params\":{},\"questionAnalysis\":\"xxx\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionDesc\":\"马克思主义最根本的世界观和方法论是:\",\"questionKnowledge\":\"a,b,c\",\"questionRank\":\"0.6\",\"questionScore\":\"2\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\",\"useNumber\":1},{\"baseExamQuestionResultList\":[{\"description\":\"酸的\",\"id\":1034,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10354},{\"description\":\"甜的\",\"id\":1035,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10354},{\"description\":\"苦的\",\"id\":1036,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10354},{\"description\":\"辣的\",\"id\":1037,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10354}],\"createBy\":\"123\",\"createTime\":\"2025-12-01 11:34:07\",\"id\":10354,\"params\":{},\"questionAnswer\":\"B\",\"questionDesc\":\"葡萄是什么味道的\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":17,\"status\":\"1\",\"useNumber\":1},{\"baseExamQuestionResultList\":[{\"description\":\"11\",\"id\":1030,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10353},{\"description\":\"11\",\"id\":1031,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10353},{\"description\":\"11\",\"id\":1032,\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10353},{\"description\":\"11\",\"id\":1033,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10353}],\"createBy\":\"1\",\"createTime\":\"2025-11-27 15:50:10\",\"id\":10353,\"params\":{},\"questionAnalysi', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":25,\"deptName\":\"求真8班\",\"params\":{},\"studentCount\":3}],\"createBy\":\"13566776677\",\"createTime\":\"2025-12-11 16:12:57\",\"estimateMark\":0,\"estimateNum\":0,\"id\":11,\"instructions\":\"

11111

\",\"isDel\":0,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"questionCount\":4,\"schId\":17,\"score\":32,\"singleMark\":32,\"singleNum\":4,\"status\":1,\"title\":\"作业1\"}}', 0, NULL, '2025-12-11 16:12:58', 1075); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1954, 17, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, '13566776677', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":26,\"params\":{}}],\"createBy\":\"127\",\"createTime\":\"2025-12-11 16:33:42\",\"estimateMark\":0,\"estimateNum\":0,\"id\":12,\"instructions\":\"

sadfsdf

\",\"multipleMark\":21,\"multipleNum\":3,\"params\":{},\"questionCount\":3,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"伟大斗争\",\"id\":1008,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大工程\",\"id\":1009,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大事业\",\"id\":1010,\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大梦想\",\"id\":1011,\"isOk\":1,\"option\":\"D\",\"params\":{},\"questionId\":10343}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:14:31\",\"id\":10343,\"params\":{},\"questionAnalysis\":\"党的十九大提出的“四个伟大”是指党的十九大提出的“四个伟大”是指党的十九大提出的“四个伟大”是指\",\"questionAnswer\":\"A,B,C,D\",\"questionCourseId\":9,\"questionDesc\":\"党的十九大提出的“四个伟大”是指\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"2\",\"schId\":1,\"status\":\"1\",\"useNumber\":11},{\"baseExamQuestionResultList\":[{\"description\":\"实事求是\",\"id\":1000,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10341},{\"description\":\"群众路线\",\"id\":1001,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10341},{\"description\":\"独立自主\",\"id\":1002,\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10341},{\"description\":\"统一战线\",\"id\":1003,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10341}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:12:38\",\"id\":10341,\"params\":{},\"questionAnalysis\":\"毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方\",\"questionAnswer\":\"A,B,C\",\"questionCourseId\":9,\"questionDesc\":\"毛泽东思想活的灵魂的基本方面有( )\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"2\",\"schId\":1,\"status\":\"1\",\"useNumber\":8},{\"baseExamQuestionResultList\":[{\"description\":\"111\",\"id\":945,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10329},{\"description\":\"222\",\"id\":946,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10329},{\"description\":\"333\",\"id\":947,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10329},{\"description\":\"444\",\"id\":948,\"isOk\":0,\"option\":\"D\",\"para', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":26,\"deptName\":\"尚美5班\",\"params\":{},\"studentCount\":3}],\"createBy\":\"13566776677\",\"createTime\":\"2025-12-11 16:33:42\",\"estimateMark\":0,\"estimateNum\":0,\"id\":12,\"instructions\":\"

sadfsdf

\",\"isDel\":0,\"multipleMark\":21,\"multipleNum\":3,\"params\":{},\"questionCount\":3,\"schId\":17,\"score\":21,\"singleMark\":0,\"singleNum\":0,\"status\":1,\"title\":\"作业1\"}}', 0, NULL, '2025-12-11 16:33:43', 753); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1955, 17, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:00:17\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2010,\"menuName\":\"用户管理\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":2001,\"path\":\"/usrMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 16:42:05', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1956, 17, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:01:36\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2013,\"menuName\":\"授课管理\",\"menuType\":\"M\",\"orderNum\":2,\"params\":{},\"parentId\":2002,\"path\":\"/homeworkMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 16:42:42', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1957, 17, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createTime\":\"2025-10-24 17:01:15\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2012,\"menuName\":\"课程管理\",\"menuType\":\"M\",\"orderNum\":1,\"params\":{},\"parentId\":2002,\"path\":\"/courseMgr\",\"perms\":\"\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-11 16:42:53', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1958, 17, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, '13566776677', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":25,\"params\":{}}],\"createBy\":\"127\",\"createTime\":\"2025-12-12 10:50:00\",\"estimateMark\":29,\"estimateNum\":7,\"id\":13,\"instructions\":\"

1212

\",\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"questionCount\":7,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1028,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10352},{\"description\":\"错\",\"id\":1029,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10352}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:28:01\",\"id\":10352,\"params\":{},\"questionAnalysis\":\"改革开放是中国特色社会主义的根本任务改革开放是中国特色社会主义的根本任务改革开放是中国特色社会主义的根本任务\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"改革开放是中国特色社会主义的根本任务\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"3\",\"schId\":1,\"status\":\"1\",\"useNumber\":9},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1022,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10349},{\"description\":\"错\",\"id\":1023,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10349}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:02\",\"id\":10349,\"params\":{},\"questionAnalysis\":\"遵义会议确立了毛泽东在党中央和红军中的领导地位遵义会议确立了毛泽东在党中央和红军中的领导地位遵义会议确立了毛泽东在党中央和红军中的领导地位\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"遵义会议确立了毛泽东在党中央和红军中的领导地位\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"3\",\"schId\":1,\"status\":\"1\",\"useNumber\":9},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1020,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10348},{\"description\":\"错\",\"id\":1021,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10348}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:25:18\",\"id\":10348,\"params\":{},\"questionAnalysis\":\"社会主义核心价值观只需要践行个人层面的要求社会主义核心价值观只需要践行个人层面的要求社会主义核心价值观只需要践行个人层面的要求\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"社会主义核心价值观只需要践行个人层面的要求\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"3\",\"schId\":1,\"status\":\"1\",\"useNumber\":3},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1014,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10345},{\"description\":\"错\",\"id\":1015,\"i', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":25,\"deptName\":\"求真8班\",\"params\":{},\"studentCount\":3}],\"createBy\":\"13566776677\",\"createTime\":\"2025-12-12 10:50:00\",\"estimateMark\":29,\"estimateNum\":7,\"id\":13,\"instructions\":\"

1212

\",\"isDel\":0,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"questionCount\":7,\"schId\":17,\"score\":29,\"singleMark\":0,\"singleNum\":0,\"status\":1,\"title\":\"作业3\"}}', 0, NULL, '2025-12-12 10:50:02', 1025); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1959, 17, '作业统计', 5, 'com.study.teaching.controller.BaseHomeworkStudentController.export()', 'POST', 1, '13566776677', NULL, '/studentHomeWork/export', '0:0:0:0:0:0:0:1%0', '', '{\"schId\":\"17\",\"homeworkId\":\"11\",\"examStatus\":\"\",\"pageSize\":\"10000\",\"isAsc\":\"asc\",\"keyword\":\"\",\"orderByColumn\":\"\",\"pageNum\":\"1\",\"orgId\":\"\"}', NULL, 0, NULL, '2025-12-15 10:29:03', 1283); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1960, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"avatar\":\"/statics/2025/12/15/file_20251215104841A001.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAGQAZADAREAAhEBAxEB/8QAHwAAAgMAAwEBAQEAAAAAAAAABwgFBgkDBAoCAQAL/8QARxAAAQMDAwIEBAMGBQUAAAILAQIDBAUGEQcSIQAxCBNBURQiYXEVgZEJIzKhscEWQtHh8BckM1LxChglNGIZQ1Nyc4Kisv/EAB4BAAICAwEBAQEAAAAAAAAAAAQFAwYBAgcIAAkK/8QAPBEAAQMCBAQEBQQCAgMAAgIDAQIRIQMxAARBUQUSYXEigZGhBhOxwfAy0eHxBxQjQhVSYjNyFiSCopL/2gAMAwEAAhEDEQA/AEZjx049/fA/P6Hvz69vr1/V9VqXsB3tfQNMwcfzl1qrgqJEkw8AOzedzvN3xNxopUoJxgEcnHr6jPscHtn05wOF9asQ9m7z3Mec7W1wAupzE6u4c7fvfF4pFLU6pP7ok4xjG7B9P+Dt9T3QZ7OpQ45wLs5b3s51JL9GwGqguoHPNJcsCwT11ncadMFiiW15xRlsHI5BH8Wft9Dn3zxg89UviHFfllfKoSDYyH+o0JsxfGlPJqXdwxOhH106gl/MYK1LsZtzYoNJHY85HGAfYdvTnjv246pOf42plDmAghnvtq9rMN8SKyKgnla5Ozks5br3nQPfB909tBDMhoKZ4UtPOcD5jggBWeM847fp1zbjnF1KpVDzMSCbvpu59jq+LHwDgSK2ZohaVcq1pBLWLjUtP9QDjTLS+kIp0WKW2kN7W08pByQUn1wM/l/IcdeWvivPqzNbMcyiQFlphge+wDeV749y/wCPOEI4fl8sKdMBHICpZACoFjFi5U/0lmThkrbxgk4SfseMAAD7Y9ffrkuYPIphPO5JJuQfp33vfHd6PjCeV2SABAF+jx16WNsTDMckAlJySccA/Ye/6Z56X1aoSZIfpIaZ+89egw0oJK1aWLta4/D+7Y7yIoP+VRzg4I4HYenOR6f0I46DVXQLEE9SPsf2wwFFZLN6B/UwB5+2sixCI5KTjH68/wDOf19B0HWzjEhLR5hxBDPvtYxLE4mp5VaiI1', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 10:48:42', 1167); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1961, 1, '系统日志', 2, 'com.study.setting.controller.BaseSysLogController.edit()', 'PUT', 1, 'admin', NULL, '/syslog', '127.0.0.1', '', '{\"content\":\"请求地址\'/examPlan/list\',权限码校验失败\'examine:examPlan:list\'\",\"createBy\":\"18111111111\",\"createTime\":\"2025-12-10 17:17:06\",\"errorStack\":\"com.study.common.core.exception.auth.NotPermissionException: examine:examPlan:list\\n\\tat com.study.common.security.auth.AuthLogic.checkPermiAnd(AuthLogic.java:172)\\n\\tat com.study.common.security.auth.AuthLogic.checkPermi(AuthLogic.java:152)\\n\\tat com.study.common.security.auth.AuthUtil.checkPermi(AuthUtil.java:156)\\n\\tat com.study.common.security.aspect.PreAuthorizeAspect.checkMethodAnnotation(PreAuthorizeAspect.java:86)\\n\\tat com.study.common.security.aspect.PreAuthorizeAspect.around(PreAuthorizeAspect.java:58)\\n\\tat sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\\n\\tat sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\\n\\tat sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\\n\\tat java.lang.reflect.Method.invoke(Method.java:498)\\n\\tat org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634)\\n\\tat org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624)\\n\\tat org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:175)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\\n\\tat org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\\n\\tat org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)\\n\\tat org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:762)\\n\\tat org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:707)\\n\\tat com.study.examine.controller.BaseExamPlanC', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 11:17:54', 436); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1962, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '0:0:0:0:0:0:0:1%0', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 11:20:06', 46910); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1963, 1, '系统备份', 3, 'com.study.setting.controller.BaseBackupController.remove()', 'DELETE', 1, 'admin', NULL, '/backup/35', '127.0.0.1', '', '[35]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 11:21:27', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1964, 1, '系统备份', 3, 'com.study.setting.controller.BaseBackupController.remove()', 'DELETE', 1, 'admin', NULL, '/backup/36', '127.0.0.1', '', '[36]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 11:21:32', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1965, 1, '系统备份', 3, 'com.study.setting.controller.BaseBackupController.remove()', 'DELETE', 1, 'admin', NULL, '/backup/37', '0:0:0:0:0:0:0:1%0', '', '[37]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 11:21:38', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1966, 1, '系统备份', 3, 'com.study.setting.controller.BaseBackupController.remove()', 'DELETE', 1, 'admin', NULL, '/backup/38', '127.0.0.1', '', '[38]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 11:21:43', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1967, 1, '系统备份', 3, 'com.study.setting.controller.BaseBackupController.remove()', 'DELETE', 1, 'admin', NULL, '/backup/39', '0:0:0:0:0:0:0:1%0', '', '[39]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 11:21:48', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1968, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 11:32:06', 41349); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1969, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '127.0.0.1', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 11:32:56', 45096); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1970, 1, '基础题库', 6, 'com.study.examine.controller.BaseExamQuestionController.importData()', 'POST', 1, 'admin', NULL, '/examQuestion/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '导入题目数据不能为空!', '2025-12-15 11:52:16', 1748); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1971, 1, '角色管理', 1, 'com.study.system.controller.SysRoleController.add()', 'POST', 1, 'admin', NULL, '/role', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"count\":0,\"createBy\":\"admin\",\"deptCheckStrictly\":false,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":182,\"roleKey\":\"1215测试角色\",\"roleName\":\"1215测试角色\",\"roleSort\":0,\"roleType\":1,\"schoolId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 14:30:11', 210); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1972, 1, '系统备份', 2, 'com.study.setting.controller.BaseBackupController.restore()', 'GET', 1, 'admin', NULL, '/backup/restore/49', '127.0.0.1', '', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 14:33:20', 32389); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1973, 1, '角色管理', 3, 'com.study.system.controller.SysRoleController.remove()', 'DELETE', 1, 'admin', NULL, '/role/182', '0:0:0:0:0:0:0:1%0', '', '[182]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 14:34:12', 305); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1974, 1, '定时任务', 3, 'com.study.job.controller.SysJobController.remove()', 'DELETE', 1, 'admin', NULL, '/job/1', '127.0.0.1', '', '[1]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 14:41:26', 274); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1975, 1, '定时任务', 3, 'com.study.job.controller.SysJobController.remove()', 'DELETE', 1, 'admin', NULL, '/job/2', '127.0.0.1', '', '[2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 14:41:31', 204); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1976, 1, '定时任务', 3, 'com.study.job.controller.SysJobController.remove()', 'DELETE', 1, 'admin', NULL, '/job/3', '127.0.0.1', '', '[3]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 14:41:35', 194); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1977, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}}],\"createBy\":\"1\",\"createTime\":\"2025-12-15 15:03:17\",\"estimateMark\":5,\"estimateNum\":1,\"id\":14,\"instructions\":\"

\",\"multipleMark\":5,\"multipleNum\":1,\"params\":{},\"questionCount\":5,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1026,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10351},{\"description\":\"错\",\"id\":1027,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10351}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:27:19\",\"id\":10351,\"params\":{},\"questionAnalysis\":\"道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的道德是靠国家强制力保证实施的\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"道德是靠国家强制力保证实施的\",\"questionRank\":\"0.8\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\",\"useNumber\":18},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1024,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"id\":1025,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\",\"useNumber\":22},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1018,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10347},{\"description\":\"错\",\"id\":1019,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10347}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:18:13\",\"id\":10347,\"params\":{},\"questionAnalysis\":\"党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征党的领导是中国特色社会主义最本质的特征\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"党的领导是中国特色社会主义最本质的特征\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\",\"useNumber\":21},{\"baseExamQuestionResultList\":[{\"description\":\"伟大斗争\",\"id\":1008,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10343},{\"description\":\"伟大工程\",\"id\":1009,\"i', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"studentCount\":2}],\"createBy\":\"admin\",\"createTime\":\"2025-12-15 15:03:18\",\"estimateMark\":5,\"estimateNum\":1,\"id\":14,\"instructions\":\"

\",\"isDel\":0,\"multipleMark\":5,\"multipleNum\":1,\"params\":{},\"questionCount\":5,\"schId\":1,\"score\":25,\"singleMark\":15,\"singleNum\":3,\"status\":1,\"title\":\"1215作业\"}}', 0, NULL, '2025-12-15 15:03:18', 756); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1978, 1, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, 'admin', NULL, '/todo/24', '0:0:0:0:0:0:0:1%0', '', '[24]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 17:23:02', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1979, 1, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, 'admin', NULL, '/todo/40', '0:0:0:0:0:0:0:1%0', '', '[40]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-15 17:23:49', 59); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1980, 17, '教师管理', 2, 'com.study.system.controller.SysUserController.editSecretKey()', 'PUT', 1, '13488103555', NULL, '/user/editSecretKey/131', '0:0:0:0:0:0:0:1%0', '', '[131]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:27:07', 368); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1981, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"component\":\"/teaching/practicework/index\",\"createTime\":\"2025-12-10 10:56:05\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2222,\"menuName\":\"实践作业\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2014,\"path\":\"practicework\",\"perms\":\"teaching:practicework:list\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:27:35', 108); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1982, 1, '菜单管理', 1, 'com.study.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"children\":[],\"createBy\":\"admin\",\"isCache\":\"0\",\"isFrame\":\"1\",\"menuName\":\"实践作业查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2222,\"status\":\"0\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:28:24', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1983, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '0:0:0:0:0:0:0:1%0', '', '{\"children\":[],\"createTime\":\"2025-12-16 17:28:24\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2246,\"menuName\":\"实践作业查询\",\"menuType\":\"F\",\"orderNum\":1,\"params\":{},\"parentId\":2222,\"path\":\"\",\"perms\":\"teaching:practicework:query\",\"routeName\":\"\",\"status\":\"0\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:28:40', 112); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1984, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, '13488103555', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":5,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2204,2016,2017,2019,2020,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\",\"updateBy\":\"13488103555\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:31:29', 334); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1985, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, '13488103555', NULL, '/role', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"count\":5,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2204,2016,2017,2019,2020,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\",\"updateBy\":\"13488103555\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:32:19', 424); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1986, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, '13488103555', NULL, '/role', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"count\":5,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2204,2016,2017,2019,2020,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\",\"updateBy\":\"13488103555\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:33:05', 438); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1987, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":6,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2080,2087,2088,2089,2086,2009,2205,2206,2207,2204,2016,2017,2018,2019,2020,2212,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2246,2222,2194,2198,2193,2014,2002,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2200,2007,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186,2195,2196,2197],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:33:25', 393); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1988, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, '13488103555', NULL, '/role', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"count\":5,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2204,2016,2017,2018,2019,2020,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2120,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\",\"updateBy\":\"13488103555\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:36:00', 419); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1989, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, '13488103555', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":5,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2084,2080,2087,2088,2089,2090,2086,2009,2205,2206,2204,2016,2017,2018,2019,2020,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\",\"updateBy\":\"13488103555\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:36:50', 315); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1990, 1, '菜单管理', 3, 'com.study.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2213', '127.0.0.1', '', '2213', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:43:44', 178); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1991, 17, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, '13488103555', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":5,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2194,2198,2193,2014,2002,2121,2122,2118,2125,2126,2123,2133,2124,2117,2003,2135,2136,2137,2138,2139,2134,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186],\"params\":{},\"remark\":\"教师角色\",\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\",\"updateBy\":\"13488103555\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:48:00', 423); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1992, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"多维度数据分析,助力教学改进与决策支持\",\"appIconPath\":\"/statics/2025/11/21/ScreenShot_2025-11-21_162451_410_20251121162956A003.png\",\"appId\":7,\"appName\":\"教学分析\",\"appPath\":\"/teachAnalysisSys\",\"isDel\":0,\"isUse\":0,\"params\":{},\"remark\":\"7\",\"updateBy\":\"admin\",\"updateTime\":\"2025-12-16 17:52:16\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:52:17', 78); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1993, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"系统全局参数配置、安全设置及日志管理功能\",\"appIconPath\":\"/statics/2025/11/07/ScreenShot_2025-11-07_190526_115 拷贝_20251107190959A011.png\",\"appId\":8,\"appName\":\"系统设置\",\"appPath\":\"/settingSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"8\",\"updateBy\":\"admin\",\"updateTime\":\"2025-12-16 17:55:07\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:55:08', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1994, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"管理教师、学生信息,权限分配与账号安全\",\"appIconPath\":\"/statics/2025/11/07/ScreenShot_2025-11-07_190116_904 拷贝_20251107190455A009.png\",\"appId\":1,\"appName\":\"用户系统\",\"appPath\":\"/userSys\",\"isDel\":0,\"isRequired\":1,\"isUse\":1,\"params\":{},\"remark\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2025-12-16 17:55:19\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:55:19', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1995, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '127.0.0.1', '', '{\"appDesc\":\"多维度数据分析,助力教学改进与决策支持\",\"appIconPath\":\"/statics/2025/11/21/ScreenShot_2025-11-21_162451_410_20251121162956A003.png\",\"appId\":7,\"appName\":\"教学分析\",\"appPath\":\"/teachAnalysisSys\",\"isDel\":0,\"isUse\":1,\"params\":{},\"remark\":\"7\",\"updateBy\":\"admin\",\"updateTime\":\"2025-12-16 17:55:59\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:55:59', 63); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1996, 1, '学校信息', 2, 'com.study.setting.controller.BaseSchoolController.edit()', 'PUT', 1, 'admin', NULL, '/school', '0:0:0:0:0:0:0:1%0', '', '{\"apps\":\"1,2,3,4,5,6,8\",\"createBy\":\"admin\",\"createTime\":\"2025-10-28 15:57:20\",\"isDel\":0,\"isSystemSchool\":\"1\",\"logoPath\":\"/statics/2025/11/01/u3469_20251101215200A004.png\",\"mail\":\"ry@163.com\",\"manager\":\"超级管理员\",\"mgrGender\":\"1\",\"mgrPhone\":\"admin\",\"params\":{},\"schoolId\":1,\"schoolName\":\"中硕思政研究院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2025-12-16 17:56:11\",\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:56:11', 282); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1997, 1, '应用管理', 2, 'com.study.setting.controller.BaseAppController.edit()', 'POST', 1, 'admin', NULL, '/apps/updateApp', '0:0:0:0:0:0:0:1%0', '', '{\"appDesc\":\"多维度数据分析,助力教学改进与决策支持\",\"appIconPath\":\"/statics/2025/11/21/ScreenShot_2025-11-21_162451_410_20251121162956A003.png\",\"appId\":7,\"appName\":\"教学分析\",\"appPath\":\"/teachAnalysisSys\",\"isDel\":0,\"isUse\":0,\"params\":{},\"remark\":\"7\",\"updateBy\":\"admin\",\"updateTime\":\"2025-12-16 17:57:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 17:57:10', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1998, 17, '角色管理', 1, 'com.study.system.controller.SysRoleController.add()', 'POST', 1, '13488103555', NULL, '/role', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"count\":0,\"createBy\":\"13488103555\",\"deptCheckStrictly\":false,\"flag\":false,\"isSys\":0,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":183,\"roleKey\":\"我添加的角色1\",\"roleName\":\"我添加的角色1\",\"roleSort\":0,\"roleType\":1,\"schoolId\":17,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 18:02:06', 282); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1999, 17, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, '13488103555', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"ct0001\",\"createBy\":\"13488103555\",\"createTime\":\"2025-11-20 12:11:15\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":22,\"deptName\":\"信息工程学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":25,\"deptCode\":\"1232323\",\"deptId\":25,\"deptName\":\"求真8班\",\"userId\":126},{\"classId\":26,\"deptCode\":\"sm0001\",\"deptId\":26,\"deptName\":\"尚美5班\",\"userId\":126}],\"deptCode\":\"-\",\"deptId\":22,\"deptName\":\"信息工程学院\",\"email\":\"13455543334@qq.com\",\"joinTime\":\"2025-11-01\",\"loginDate\":\"2025-12-16 18:03:46\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"王大锤\",\"params\":{},\"phoneNumber\":\"13455543334\",\"pwdUpdateDate\":\"2025-11-21 14:35:03\",\"remark\":\"erwrewer色的方式发发\",\"roleId\":183,\"roleIds\":[183],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":140,\"roleKey\":\"teacher\",\"roleName\":\"教师\",\"roleSort\":0,\"status\":\"0\"}],\"schId\":17,\"schName\":\"陕西示范大学\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"13488103555\",\"userId\":126,\"userName\":\"13455543334\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-16 18:04:32', 652); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2000, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/user/editSecretKey/2', '127.0.0.1', '', '[2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 10:52:45', 272); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2001, 1, '系统日志', 5, 'com.study.setting.controller.BaseSysLogController.export()', 'POST', 1, 'admin', NULL, '/syslog/export', '127.0.0.1', '', '{\"params\":{}}', NULL, 0, NULL, '2025-12-17 10:56:31', 2631); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2002, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/student/editSecretKey/1', '127.0.0.1', '', '[1]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 11:04:46', 243); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2003, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/student/editSecretKey/1', '0:0:0:0:0:0:0:1%0', '', '[1]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 11:10:17', 274); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2004, 1, '菜单管理', 2, 'com.study.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '0:0:0:0:0:0:0:1%0', '', '{\"children\":[],\"component\":\"resource/resourceApproval/index\",\"createTime\":\"2025-11-08 14:31:15\",\"icon\":\"#\",\"isCache\":\"0\",\"isFrame\":\"1\",\"isSys\":0,\"menuId\":2123,\"menuName\":\"资源审核\",\"menuType\":\"C\",\"orderNum\":2,\"params\":{},\"parentId\":2117,\"path\":\"resourceApproval\",\"perms\":\"resource:approval:list\",\"routeName\":\"\",\"status\":\"1\",\"updateBy\":\"admin\",\"visible\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 11:18:08', 77); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2005, 17, '资源管理', 1, 'com.study.resource.controller.BaseResourceController.add()', 'POST', 1, '13488103555', NULL, '/resource', '127.0.0.1', '', '{\"approvalState\":1,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":1,\"coverImgPath\":\"\",\"createBy\":\"123\",\"createTime\":\"2025-12-17 11:25:04\",\"description\":\"

111

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":73,\"name\":\"1111\",\"params\":{},\"premiumTypes\":\"\",\"schId\":17,\"source\":\"3\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":6,\"viewCount\":0}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalState\":1,\"authorId\":123,\"authorName\":\"龙小孟\",\"categoryId\":1,\"createBy\":\"123\",\"createTime\":\"2025-12-17 11:25:04\",\"description\":\"

111

\",\"downloadCount\":0,\"fileConfig\":\"[]\",\"id\":73,\"name\":\"1111\",\"params\":{},\"schId\":17,\"source\":\"3\",\"sourceUrl\":\"http://baidu.com\",\"stage\":1,\"state\":1,\"subjectId\":1,\"sysAndCurrentSchool\":false,\"tagIds\":\"1\",\"typeId\":6,\"viewCount\":0}}', 0, NULL, '2025-12-17 11:25:04', 202); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2006, 17, '资源审核', 5, 'com.study.resource.controller.BaseResourceController.exportApproval()', 'POST', 1, '13488103555', NULL, '/resource/exportApproval', '127.0.0.1', '', '{\"schId\":\"17\",\"approvalStateList[0]\":\"1\",\"approvalStateList[2]\":\"3\",\"approvalStateList[1]\":\"2\"}', NULL, 0, NULL, '2025-12-17 11:25:30', 1656); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2007, 17, '资源管理', 2, 'com.study.resource.controller.BaseResourceController.approve()', 'PUT', 1, '13488103555', NULL, '/resource/approve', '127.0.0.1', '', '{\"approvalAdvice\":\"1111\",\"approvalState\":2,\"approverId\":123,\"idList\":[73],\"params\":{},\"sysAndCurrentSchool\":false}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"approvalAdvice\":\"1111\",\"approvalState\":2,\"approverId\":123,\"idList\":[73],\"params\":{},\"sysAndCurrentSchool\":false}}', 0, NULL, '2025-12-17 11:26:26', 196); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2008, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '127.0.0.1', '', '{\"content\":\"

321

\",\"createBy\":\"1\",\"createTime\":\"2025-12-17 11:33:48\",\"id\":53,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"planSendTime\":\"2025-12-17 11:44:00\",\"publishTime\":\"2025-12-17 11:33:48\",\"schId\":1,\"sendState\":0,\"sendType\":2,\"title\":\"321\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 11:33:49', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2009, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/664', '127.0.0.1', '', '664', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 11:45:43', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2010, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/647', '127.0.0.1', '', '647', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 11:45:48', 103); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2011, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/646', '0:0:0:0:0:0:0:1%0', '', '646', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 11:45:50', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2012, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/629', '0:0:0:0:0:0:0:1%0', '', '629', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 11:46:01', 102); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2013, 17, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '13488103555', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

aaaaaaa

\",\"createBy\":\"123\",\"createTime\":\"2025-12-17 12:50:29\",\"id\":54,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-12-17 12:50:29\",\"schId\":17,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"notice1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 12:50:30', 551); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2014, 17, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '13488103555', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

1111

\",\"createBy\":\"123\",\"createTime\":\"2025-12-17 12:53:11\",\"id\":55,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-12-17 12:53:11\",\"schId\":17,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"n2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 12:53:12', 950); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2015, 17, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '13488103555', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

11

\",\"createBy\":\"123\",\"createTime\":\"2025-12-17 12:54:45\",\"id\":56,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-12-17 12:54:45\",\"schId\":17,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"n3\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 12:56:02', 76953); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2016, 1, '系统消息', 1, 'com.study.information.controller.BaseSysMessageController.add()', 'POST', 1, 'admin', NULL, '/message', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"

1111

\",\"createBy\":\"1\",\"createTime\":\"2025-12-17 14:09:44\",\"id\":57,\"msgCategory\":1,\"msgState\":1,\"msgType\":1,\"params\":{},\"planSendTime\":\"2025-12-17 14:20:00\",\"publishTime\":\"2025-12-17 14:09:44\",\"schId\":1,\"sendState\":0,\"sendType\":2,\"title\":\"sys1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 14:09:44', 110); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2017, 2, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"

aa

\",\"createBy\":\"100\",\"createTime\":\"2025-12-17 14:17:08\",\"id\":58,\"msgState\":1,\"msgType\":2,\"params\":{},\"planSendTime\":\"2025-12-17 14:37:00\",\"publishTime\":\"2025-12-17 14:17:08\",\"schId\":2,\"sendScope\":1,\"sendState\":0,\"sendType\":2,\"title\":\"n1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 14:17:08', 60); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2018, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"avatar\":\"/statics/2025/12/15/file_20251215104841A001.jpeg\",\"code\":\"1212\",\"createBy\":\"admin\",\"createTime\":\"2025-10-21 09:30:43\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"ry@qq.com\",\"joinTime\":\"2025-12-02\",\"loginDate\":\"2025-12-17 10:53:13\",\"loginIp\":\"0:0:0:0:0:0:0:1%0\",\"nickName\":\"张大锤\",\"params\":{},\"phoneNumber\":\"15666666666\",\"pwdUpdateDate\":\"2025-10-21 09:30:43\",\"remark\":\"测试员\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":2,\"userName\":\"15666666666\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 14:28:29', 637); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2019, 2, '调度日志', 9, 'com.study.job.controller.SysJobLogController.clean()', 'DELETE', 1, 'admin', NULL, '/job/log/clean', '0:0:0:0:0:0:0:1%0', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 14:28:47', 148); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2020, 1, '系统日志', 2, 'com.study.setting.controller.BaseSysLogController.edit()', 'PUT', 1, 'admin', NULL, '/syslog', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"请求参数类型不匹配,参数[id]要求类型为:\'java.lang.Long\',但输入值为:\'unreadCount2\'\",\"createBy\":\"13444343434\",\"createTime\":\"2025-12-17 14:07:39\",\"errorStack\":\"org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type \'java.lang.String\' to required type \'java.lang.Long\'; nested exception is java.lang.NumberFormatException: For input string: \\\"unreadCount2\\\"\\n\\tat org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133)\\n\\tat org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122)\\n\\tat org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179)\\n\\tat org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146)\\n\\tat org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117)\\n\\tat org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:903)\\n\\tat org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:809)\\n\\tat org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\\n\\tat org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1072)\\n\\tat org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:965)\\n\\tat org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)\\n\\tat org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)\\n\\tat javax.servlet.http.HttpServlet.service(HttpServlet.java:529)\\n\\tat org.springframework.web.servlet.FrameworkSe', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 14:30:06', 131); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2021, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"\",\"code\":\"10521651\",\"createBy\":\"admin\",\"createTime\":\"2025-11-27 12:58:00\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"\",\"joinTime\":\"2025-11-27\",\"loginDate\":\"2025-11-27 13:01:25\",\"loginIp\":\"0:0:0:0:0:0:0:1%0\",\"nickName\":\"杨飞虎\",\"params\":{},\"phoneNumber\":\"15202903074\",\"roleId\":3,\"roleIds\":[3],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":3,\"roleKey\":\"school_manager\",\"roleName\":\"院校管理员\",\"roleSort\":1,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"2\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":128,\"userName\":\"15202903074\",\"userType\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 15:00:09', 791); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2022, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/user/editSecretKey/116', '127.0.0.1', '', '[116]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 16:12:27', 295); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2023, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/user/editSecretKey/116,115', '127.0.0.1', '', '[116,115]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-17 16:12:37', 547); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2024, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王二小', NULL, '/messageRel/read/581', '0:0:0:0:0:0:0:1%0', '', '581', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:01:01', 117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2025, 2, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王二小', NULL, '/messageRel/read/575', '127.0.0.1', '', '575', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:01:05', 81); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2026, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:13:06', 207); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2027, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10070,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:13:07', 148); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2028, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 网络连接失败,请检查网络或联系管理员\",\"messageId\":10071,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:13:07', 314); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2029, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+3\",\"messageId\":10072,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:13:29', 202); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2030, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:13:29', 83); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2031, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 网络连接失败,请检查网络或联系管理员\",\"messageId\":10073,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:13:29', 133); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2032, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '曹操', NULL, '/messageRel/read/789', '127.0.0.1', '', '789', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:15:44', 362); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2033, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10074,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:18:14', 202); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2034, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:18:15', 129); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2035, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 小米MiMo API请求失败: Not Found\",\"messageId\":10075,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:18:15', 211); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2036, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10076,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:20:00', 128); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2037, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:20:00', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2038, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 小米MiMo API请求失败: Not Found\",\"messageId\":10077,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:20:01', 187); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2039, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"你好\",\"messageId\":10078,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:27:16', 214); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2040, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:27:17', 103); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2041, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"你好!很高兴为你服务。\\n\\n请问有什么我可以帮助你的吗?无论是解答问题、进行对话,还是获取信息,我都在这里。\",\"messageId\":10079,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:27:17', 213); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2042, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2+3+...+100=?\",\"messageId\":10080,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:27:40', 202); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2043, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:27:40', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2044, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"The sum is **5,050**.\\n\\nHere are a few ways to find this:\\n\\n**1. Gauss\'s Formula (The Quickest Method)**\\nThe formula for the sum of a series of numbers is:\\n$$n \\\\times (number + 1) / 2$$\\n\\nFor the numbers 1 to 100:\\n$$100 \\\\times (100 + 1) / 2$$\\n$$100 \\\\times 101 / 2$$\\n$$10100 / 2$$\\n**= 5,050**\\n\\n**2. Pairing Method**\\nIf you add the first and last number, it equals 101.\\nIf you add the second and second-to-last number, it equals 101.\\n* $1 + 100 = 101$\\n* $2 + 99 = 101$\\n* $3 + 98 = 101$\\n\\nThere are 50 such pairs.\\n$$50 \\\\text{ pairs} \\\\times 101 \\\\text{ per pair} = \\\\mathbf{5,050}$$\",\"messageId\":10081,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:27:44', 121); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2045, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+9\",\"messageId\":10082,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:29:25', 148); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2046, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:29:25', 111); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2047, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"The sum of 1 and 9 is **10**.\",\"messageId\":10083,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:29:26', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2048, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10084,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:42:45', 124); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2049, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:42:46', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2050, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Internal Server Error\",\"messageId\":10085,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:42:47', 122); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2051, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10086,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:43:45', 194); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2052, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:43:45', 108); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2053, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 小米MiMo API请求失败: Not Found\",\"messageId\":10087,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:43:45', 144); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2054, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10088,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:44:39', 128); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2055, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:44:39', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2056, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 小米MiMo API请求失败: Not Found\",\"messageId\":10089,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 11:44:39', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2057, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, '15666666666', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"1111\",\"messageId\":10090,\"messageType\":\"1\",\"params\":{},\"sessionId\":1012,\"userId\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 15:06:42', 117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2058, 1, 'AI聊天会话', 1, 'com.study.system.controller.AiChatSessionController.add()', 'POST', 1, '15666666666', NULL, '/aichatsession', '127.0.0.1', '', '{\"params\":{},\"sessionId\":1012,\"sessionTitle\":\"1111\",\"userId\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"params\":{},\"sessionId\":1012,\"sessionTitle\":\"1111\",\"userId\":2}}', 0, NULL, '2025-12-18 15:06:42', 125); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2059, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, '15666666666', NULL, '/aichatsession/updateTime/1012', '127.0.0.1', '', '1012', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 15:06:42', 238); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2060, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, '15666666666', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"❌ 出错了: 小米MiMo API请求失败: Not Found\",\"messageId\":10091,\"messageType\":\"3\",\"params\":{},\"sessionId\":1012,\"userId\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 15:06:42', 237); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2061, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, '15666666666', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"222\",\"messageId\":10092,\"messageType\":\"1\",\"params\":{},\"sessionId\":1012,\"userId\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 15:07:08', 149); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2062, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, '15666666666', NULL, '/aichatsession/updateTime/1012', '127.0.0.1', '', '1012', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 15:07:08', 84); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2063, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, '15666666666', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"❌ 出错了: 小米MiMo API请求失败: Not Found\",\"messageId\":10093,\"messageType\":\"3\",\"params\":{},\"sessionId\":1012,\"userId\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 15:07:08', 146); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2064, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":6,\"ancestors\":\"0,1,2,4\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"2021界思政2103班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"cls003\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":4,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 15:36:35', 216); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2065, 1, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, 'admin', NULL, '/dept', '0:0:0:0:0:0:0:1%0', '', '{\"academicId\":6,\"ancestors\":\"0,1,2,4\",\"children\":[],\"createBy\":\"admin\",\"deptName\":\"2021界思政2104班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"cls004\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":4,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 15:36:49', 99); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2066, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":14,\"baseExamPlanClassList\":[{\"classId\":8,\"deptCode\":\"D003\",\"deptId\":8,\"deptName\":\"思政2601班\",\"params\":{},\"planId\":132},{\"classId\":9,\"deptCode\":\"D004\",\"deptId\":9,\"deptName\":\"思政2602班\",\"params\":{},\"planId\":132},{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"planId\":132},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"planId\":132},{\"classId\":32,\"deptCode\":\"cls003\",\"deptId\":32,\"deptName\":\"2021界思政2103班\",\"params\":{},\"planId\":132},{\"classId\":33,\"deptCode\":\"cls004\",\"deptId\":33,\"deptName\":\"2021界思政2104班\",\"params\":{},\"planId\":132}],\"createBy\":\"1\",\"createTime\":\"2025-12-18 15:38:11\",\"examAddress\":\"教学楼第一教室\",\"examEndTime\":\"2025-12-18 18:30:00\",\"examInfoId\":10017,\"examStartTime\":\"2025-12-18 15:45:00\",\"examTitle\":\"1218测试考试安排\",\"id\":132,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 15:38:12', 730); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2067, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '0:0:0:0:0:0:0:1%0', '', '{\"address\":\"12131\",\"code\":\"201511211\",\"createBy\":\"\",\"createTime\":\"2025-11-06 14:34:35\",\"delFlag\":\"0\",\"deptAncestors\":[\"1\",\"2\",\"4\",\"5\"],\"deptCode\":\"-\",\"deptId\":5,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育,2021级,思政2101班\\\",\\\"deptIds\\\":\\\"1,2,4,5\\\"}\",\"deptName\":\"思政2101班\",\"email\":\"12@qq.com\",\"id\":2,\"joinTime\":\"2025-11-07\",\"loginIp\":\"\",\"params\":{},\"phoneNumber\":\"13121312312\",\"pwdUpdateDate\":\"2025-12-05\",\"remark\":\"42345345\",\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2025-12-18 17:09:46\",\"userCardId\":\"00\",\"userName\":\"王武\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 17:09:46', 345); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2068, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '0:0:0:0:0:0:0:1%0', '', '{\"address\":\"12131\",\"code\":\"201511222\",\"createBy\":\"\",\"createTime\":\"2025-11-06 14:34:35\",\"delFlag\":\"0\",\"deptAncestors\":[\"1\",\"2\",\"4\",\"5\"],\"deptCode\":\"-\",\"deptId\":5,\"deptInfo\":\"{\\\"deptNames\\\":\\\"马克思主义学院,思想政治教育,2021级,思政2101班\\\",\\\"deptIds\\\":\\\"1,2,4,5\\\"}\",\"deptName\":\"思政2101班\",\"email\":\"12@qq.com\",\"id\":2,\"joinTime\":\"2025-11-07\",\"loginIp\":\"\",\"params\":{},\"phoneNumber\":\"13121312312\",\"pwdUpdateDate\":\"2025-12-05\",\"remark\":\"42345345\",\"schId\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2025-12-18 17:09:54\",\"userCardId\":\"00\",\"userName\":\"王武\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 17:09:55', 222); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2069, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '曹操', NULL, '/messageRel/read/749', '127.0.0.1', '', '749', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 17:17:35', 93); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2070, 17, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '张菲', NULL, '/messageRel/read/617', '127.0.0.1', '', '617', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 17:40:45', 205); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2071, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/568', '0:0:0:0:0:0:0:1%0', '', '568', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 17:44:54', 139); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2072, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/482', '127.0.0.1', '', '482', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 17:45:05', 138); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2073, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/772', '0:0:0:0:0:0:0:1%0', '', '772', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 17:45:17', 140); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2074, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/400', '127.0.0.1', '', '400', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 17:45:25', 140); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2075, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/359', '127.0.0.1', '', '359', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-18 17:49:06', 108); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2076, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"\",\"code\":\"10521651\",\"createBy\":\"admin\",\"createTime\":\"2025-11-27 12:58:00\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"1122@qq.com\",\"joinTime\":\"2025-11-27\",\"loginDate\":\"2025-11-27 13:01:25\",\"loginIp\":\"0:0:0:0:0:0:0:1%0\",\"nickName\":\"杨飞虎\",\"params\":{},\"phoneNumber\":\"15202903074\",\"remark\":\"1122\",\"roleId\":3,\"roleIds\":[3],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":3,\"roleKey\":\"school_manager\",\"roleName\":\"院校管理员\",\"roleSort\":1,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":128,\"userName\":\"15202903074\",\"userType\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 11:23:57', 608); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2077, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 12100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
2、账号 13100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', '2025-12-22 15:08:10', 1170); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2078, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '0:0:0:0:0:0:0:1%0', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 12100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
2、账号 13100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', '2025-12-22 15:10:34', 399); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2079, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 2 条数据格式不正确,错误如下:
1、账号 12100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2
2、账号 13100000000 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', '2025-12-22 15:25:08', 1051); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2080, 1, '教师管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '0:0:0:0:0:0:0:1%0', '', '{\"schId\":\"1\",\"userTypes[1]\":\"22\",\"userTypes[0]\":\"11\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"user_id\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-12-22 15:25:14', 751); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2081, 1, '教师管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '127.0.0.1', '', '{\"schId\":\"1\",\"userTypes[1]\":\"22\",\"userTypes[0]\":\"11\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"user_id\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-12-22 15:26:51', 404); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2082, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '0:0:0:0:0:0:0:1%0', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 2 条,数据如下:
1、账号 15100000000 导入成功
2、账号 16100000000 导入成功\",\"code\":200}', 0, NULL, '2025-12-22 15:30:23', 597); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2083, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"code\":\"T521042\",\"createBy\":\"admin\",\"deptClassInfoList\":[{\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\"},{\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\"},{\"deptCode\":\"cls003\",\"deptId\":32,\"deptName\":\"2021界思政2103班\"},{\"deptCode\":\"cls004\",\"deptId\":33,\"deptName\":\"2021界思政2104班\"}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"email\":\"77@qq.com\",\"joinTime\":\"2025-12-22\",\"nickName\":\"紫霞\",\"params\":{},\"phoneNumber\":\"13100000000\",\"remark\":\"wu\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"1\",\"status\":\"0\",\"userId\":141,\"userName\":\"13100000000\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 15:38:44', 529); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2084, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, 'admin', NULL, '/homework/addHomework', '0:0:0:0:0:0:0:1%0', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}},{\"children\":[],\"deptId\":6,\"params\":{}},{\"children\":[],\"deptId\":8,\"params\":{}},{\"children\":[],\"deptId\":9,\"params\":{}}],\"estimateMark\":5,\"estimateNum\":1,\"id\":3,\"instructions\":\"

3333

\",\"multipleMark\":5,\"multipleNum\":1,\"params\":{},\"questionCount\":3,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1024,\"isOk\":0,\"option\":\"A\",\"params\":{},\"questionId\":10350},{\"description\":\"错\",\"id\":1025,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10350}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:38\",\"id\":10350,\"params\":{},\"questionAnalysis\":\"全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家全面依法治国的总目标是建设社会主义法治国家\",\"questionAnswer\":\"B\",\"questionCourseId\":5,\"questionDesc\":\"全面依法治国的总目标是建设社会主义法治国家\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\"},{\"baseExamQuestionResultList\":[{\"description\":\"实事求是\",\"id\":1000,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10341},{\"description\":\"群众路线\",\"id\":1001,\"isOk\":1,\"option\":\"B\",\"params\":{},\"questionId\":10341},{\"description\":\"独立自主\",\"id\":1002,\"isOk\":1,\"option\":\"C\",\"params\":{},\"questionId\":10341},{\"description\":\"统一战线\",\"id\":1003,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10341}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:12:38\",\"id\":10341,\"params\":{},\"questionAnalysis\":\"毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方毛泽东思想活的灵魂的基本方\",\"questionAnswer\":\"A,B,C\",\"questionCourseId\":9,\"questionDesc\":\"毛泽东思想活的灵魂的基本方面有( )\",\"questionRank\":\"0.6\",\"questionScore\":\"5\",\"questionType\":\"2\",\"schId\":1,\"status\":\"1\"},{\"baseExamQuestionResultList\":[{\"description\":\"对\",\"id\":1022,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10349},{\"description\":\"错\",\"id\":1023,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10349}],\"createBy\":\"1\",\"createTime\":\"2025-11-26 16:26:02\",\"id\":10349,\"params\":{},\"questionAnalysis\":\"遵义会议确立了毛泽东在党中央和红军中的领导地位遵义会议确立了毛泽东在党中央和红军中的领导地位遵义会议确立了毛泽东在党中央和红军中的领导地位\",\"questionAnswer\":\"A\",\"questionCourseId\":5,\"questionDesc\":\"遵义会议确立了毛泽东在党中央和红军中的领导地位\",\"questionRank\":\"0.6\",\"questio', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"studentCount\":3},{\"children\":[],\"deptId\":6,\"deptName\":\"思政2102班\",\"params\":{},\"studentCount\":0},{\"children\":[],\"deptId\":8,\"deptName\":\"思政2601班\",\"params\":{},\"studentCount\":1},{\"children\":[],\"deptId\":9,\"deptName\":\"思政2602班\",\"params\":{},\"studentCount\":2}],\"createBy\":\"admin\",\"createTime\":\"2025-12-02 10:32:18\",\"estimateMark\":5,\"estimateNum\":1,\"id\":3,\"instructions\":\"

3333

\",\"isDel\":0,\"multipleMark\":5,\"multipleNum\":1,\"params\":{},\"questionCount\":3,\"schId\":1,\"score\":15,\"singleMark\":5,\"singleNum\":1,\"status\":1,\"title\":\"20251222日思想政治理论100题作业\",\"updateBy\":\"1\",\"updateTime\":\"2025-12-22 16:07:05\"}}', 0, NULL, '2025-12-22 16:07:06', 1452); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2085, 1, '角色管理', 3, 'com.study.system.controller.SysRoleController.remove()', 'DELETE', 1, 'admin', NULL, '/role/110', '0:0:0:0:0:0:0:1%0', '', '[110]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 16:21:44', 316); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2086, 1, '教师管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/111', '0:0:0:0:0:0:0:1%0', '', '[111]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 16:22:05', 288); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2087, 1, '教师管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/110', '127.0.0.1', '', '[110]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 16:22:12', 279); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2088, 1, '角色管理', 3, 'com.study.system.controller.SysRoleController.remove()', 'DELETE', 1, 'admin', NULL, '/role/109', '127.0.0.1', '', '[109]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 16:22:25', 349); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2089, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"count\":7,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2080,2087,2088,2089,2086,2009,2205,2206,2207,2204,2016,2017,2018,2019,2020,2212,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2246,2222,2194,2198,2193,2014,2002,2120,2121,2122,2118,2133,2124,2117,2003,2135,2136,2137,2138,2227,2139,2134,2229,2228,2231,2230,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2233,2234,2232,2236,2237,2235,2239,2238,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2200,2007,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2123,2125,2126,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186,2195,2196,2197],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 16:23:51', 352); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2090, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"count\":7,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2080,2087,2088,2089,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2016,2017,2018,2019,2020,2212,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2246,2222,2194,2198,2193,2014,2002,2224,2120,2121,2122,2118,2226,2133,2124,2117,2003,2135,2136,2137,2138,2227,2139,2134,2229,2228,2231,2230,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2233,2234,2232,2236,2237,2235,2239,2238,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2200,2007,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2123,2125,2126,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186,2195,2196,2197],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 16:25:12', 345); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2091, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":7,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2081,2082,2083,2080,2087,2088,2089,2086,2009,2205,2206,2207,2208,2209,2210,2211,2204,2017,2018,2019,2020,2212,2015,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2246,2222,2194,2198,2193,2014,2002,2224,2120,2121,2122,2118,2226,2133,2124,2117,2003,2135,2136,2137,2138,2227,2139,2134,2229,2228,2231,2230,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2233,2234,2232,2236,2237,2235,2239,2238,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2200,2007,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2123,2125,2126,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186,2195,2196,2197],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 16:29:52', 363); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2092, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"admin\":false,\"count\":7,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2205,2206,2207,2208,2209,2210,2211,2204,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2034,2218,2038,2033,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2246,2222,2194,2198,2193,2014,2002,2224,2120,2121,2122,2118,2226,2133,2124,2117,2003,2135,2136,2137,2138,2227,2139,2134,2229,2228,2231,2230,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2233,2234,2232,2236,2237,2235,2239,2238,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2200,2007,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2123,2125,2126,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186,2195,2196,2197],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 16:30:53', 360); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2093, 1, '角色管理', 2, 'com.study.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '0:0:0:0:0:0:0:1%0', '', '{\"admin\":false,\"count\":7,\"deptCheckStrictly\":true,\"flag\":false,\"isSys\":1,\"menuCheckStrictly\":true,\"menuIds\":[2205,2206,2207,2208,2209,2210,2211,2204,2010,2001,2022,2023,2024,2025,2215,2216,2217,2053,2026,2021,2012,2181,2182,2183,2184,2219,2180,2220,2201,2223,2203,2202,2013,2188,2189,2190,2191,2192,2187,2246,2222,2194,2198,2193,2014,2002,2224,2120,2121,2122,2118,2226,2133,2124,2117,2003,2135,2136,2137,2138,2227,2139,2134,2229,2228,2231,2230,2170,2141,2142,2143,2144,2145,2140,2159,2160,2161,2162,2163,2158,2233,2234,2232,2236,2237,2235,2239,2238,2171,2004,2176,2177,2178,2179,2175,2172,2173,2005,2200,2007,2054,2056,2065,2066,2067,2064,2069,2070,2073,2071,2068,2057,2008,1,2,3,4,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,500,501,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,2000,2011,2027,2028,2029,2030,2031,2032,2035,2036,2037,2039,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2055,2058,2059,2060,2061,2062,2063,2085,2091,2092,2093,2094,2095,2096,2097,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2123,2125,2126,2127,2128,2129,2130,2131,2132,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2164,2165,2166,2167,2168,2169,2185,2186,2195,2196,2197],\"params\":{},\"remark\":\"普通角色\",\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"roleType\":1,\"schoolId\":1,\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-22 16:31:44', 363); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2094, 1, '理论作业', 1, 'com.study.teaching.controller.BaseHomeworkController.addHomework()', 'POST', 1, '15666666666', NULL, '/homework/addHomework', '127.0.0.1', '', '{\"classList\":[{\"children\":[],\"deptId\":5,\"params\":{}}],\"createBy\":\"2\",\"createTime\":\"2025-12-22 16:33:28\",\"estimateMark\":0,\"estimateNum\":0,\"id\":15,\"instructions\":\"

12121212

\",\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"questionCount\":1,\"questions\":[{\"baseExamQuestionResultList\":[{\"description\":\"辩证唯物主义和历史唯物主义\",\"id\":1038,\"isOk\":1,\"option\":\"A\",\"params\":{},\"questionId\":10355},{\"description\":\"唯物主义和唯心主义\",\"id\":1039,\"isOk\":0,\"option\":\"B\",\"params\":{},\"questionId\":10355},{\"description\":\"辩证法和形而上学\",\"id\":1040,\"isOk\":0,\"option\":\"C\",\"params\":{},\"questionId\":10355},{\"description\":\"可知论和不可知论\",\"id\":1041,\"isOk\":0,\"option\":\"D\",\"params\":{},\"questionId\":10355}],\"createBy\":\"1\",\"createTime\":\"2025-12-05 16:21:24\",\"id\":10355,\"params\":{},\"questionAnalysis\":\"xxx\",\"questionAnswer\":\"A\",\"questionCourseId\":3,\"questionDesc\":\"马克思主义最根本的世界观和方法论是:\",\"questionKnowledge\":\"a,b,c\",\"questionRank\":\"0.6\",\"questionScore\":\"2\",\"questionType\":\"1\",\"schId\":1,\"status\":\"1\",\"useNumber\":2}],\"schId\":1,\"score\":2,\"singleMark\":2,\"singleNum\":1,\"status\":1,\"title\":\"11122121\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"classList\":[{\"children\":[],\"deptId\":5,\"deptName\":\"思政2101班\",\"params\":{},\"studentCount\":3}],\"createBy\":\"15666666666\",\"createTime\":\"2025-12-22 16:33:28\",\"estimateMark\":0,\"estimateNum\":0,\"id\":15,\"instructions\":\"

12121212

\",\"isDel\":0,\"multipleMark\":0,\"multipleNum\":0,\"params\":{},\"questionCount\":1,\"schId\":1,\"score\":2,\"singleMark\":2,\"singleNum\":1,\"status\":1,\"title\":\"11122121\"}}', 0, NULL, '2025-12-22 16:33:28', 446); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2095, 17, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '13488103555', NULL, '/notice', '127.0.0.1', '', '{\"content\":\"

1111

\",\"createBy\":\"123\",\"createTime\":\"2025-12-23 14:35:08\",\"id\":59,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2025-12-23 14:35:08\",\"schId\":17,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"公告1111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-23 14:35:09', 867); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2096, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/558', '127.0.0.1', '', '558', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-23 14:53:02', 163); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2097, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王武', NULL, '/messageRel/read/814', '127.0.0.1', '', '814', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-23 14:59:34', 367); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2098, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '王武', NULL, '/messageRel/read/771', '127.0.0.1', '', '771', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-23 14:59:39', 181); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2099, 1, '学生信息', 5, 'com.study.system.controller.BaseStudentController.export()', 'POST', 1, 'admin', NULL, '/student/export', '0:0:0:0:0:0:0:1%0', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"isAsc\":\"asc\",\"orderByColumn\":\"createTime\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-12-23 16:21:51', 73); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2100, 1, '教师管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '127.0.0.1', '', '{\"schId\":\"1\",\"userTypes[1]\":\"22\",\"userTypes[0]\":\"11\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"user_id\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-12-23 16:22:28', 283); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2101, 1, '学生信息', 5, 'com.study.system.controller.BaseStudentController.export()', 'POST', 1, '15666666666', NULL, '/student/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"isAsc\":\"asc\",\"orderByColumn\":\"createTime\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-12-23 16:27:13', 852); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2102, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, '15666666666', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、账号 18189138537 的所属班级编码不正确', '2025-12-23 16:28:50', 349); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2103, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, '15666666666', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 18189138537 更新成功\",\"code\":200}', 0, NULL, '2025-12-23 16:29:17', 249); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2104, 1, '教师管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '127.0.0.1', '', '{\"schId\":\"1\",\"userTypes[1]\":\"22\",\"userTypes[0]\":\"11\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"user_id\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-12-23 16:29:41', 297); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2105, 1, '教师管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '127.0.0.1', '', '{\"schId\":\"1\",\"userTypes[1]\":\"22\",\"userTypes[0]\":\"11\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"user_id\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-12-23 16:30:39', 291); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2106, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、账号 15666666999 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', '2025-12-23 16:31:49', 156); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2107, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 15666666999 导入成功\",\"code\":200}', 0, NULL, '2025-12-23 16:44:49', 885); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2108, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/23/1_1069066339_171_85_3_1072128497_3d968cce5fe3247ee314241c7836c4b2_20251223165421A001.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2025/11/01/u3469_20251101214035A001.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2025-12-23 16:54:24\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-23 16:54:33', 100); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2109, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":6,\"ancestors\":\"0,1,2,4\",\"children\":[],\"deptId\":6,\"deptName\":\"思政2102班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"D001\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":4,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-23 16:59:18', 343); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2110, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":6,\"ancestors\":\"0,1,2,4\",\"children\":[],\"deptId\":6,\"deptName\":\"思政2102班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"D002\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":4,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-23 16:59:26', 290); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2111, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":6,\"children\":[],\"deptId\":6,\"deptName\":\"思政2102班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"D001\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":4,\"schId\":1,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"修改部门\'思政2102班\'失败,部门编号在当前学校中已存在\",\"code\":500}', 0, NULL, '2025-12-23 17:00:30', 71); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2112, 1, '部门管理', 2, 'com.study.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"academicId\":6,\"ancestors\":\"0,1,2,4\",\"children\":[],\"deptId\":6,\"deptName\":\"思政2102班\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"D002\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":4,\"schId\":1,\"startYear\":\"\",\"status\":\"0\",\"updateBy\":\"admin\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-23 17:00:38', 339); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2113, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 15666666999 导入成功\",\"code\":200}', 0, NULL, '2025-12-23 17:00:52', 714); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2114, 1, '教师管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '0:0:0:0:0:0:0:1%0', '', '{\"schId\":\"1\",\"userTypes[1]\":\"22\",\"userTypes[0]\":\"11\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"user_id\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2025-12-23 17:11:41', 1217); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2115, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', NULL, 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:
1、账号 15666666999 导入失败:nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', '2025-12-23 17:12:45', 492); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2116, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '0:0:0:0:0:0:0:1%0', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 15666666999 导入成功\",\"code\":200}', 0, NULL, '2025-12-23 17:20:35', 1270); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2117, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10094,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:27:58', 135); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2118, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:27:58', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2119, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"The result of \\\\(1 + 2\\\\) is:\\n\\n\\\\[\\n1 + 2 = \\\\boxed{3}\\n\\\\]\",\"messageId\":10095,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:28:01', 148); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2120, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"AI输出需要模拟快速的打字机效果,而不是一次性输出,如果输出很长的文本,效果就很差\",\"messageId\":10096,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:28:23', 126); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2121, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:28:23', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2122, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"为了解决AI输出逐个字符导致长文本效果差的问题,可以采取以下步骤:\\n\\n1. **调整AI生成方式**:让AI一次性生成完整的内容,避免逐个字符传输。这样前端可以一次性加载完整的文本,提升用户体验。\\n\\n2. **优化数据传输**:\\n - 使用WebSocket建立持久连接,实现实时流式传输,使内容逐步显示在前端。\\n - 或者将生成的文本分割成小块,逐步发送给前端,分段显示以减少延迟。\\n\\n3. **前端优化**:在前端使用骨架加载或其他技术,先显示占位符,再逐步填充内容,提升用户感知速度。\\n\\n4. **测试与评估**:分别测试不同的方案,评估其对性能和用户体验的影响,选择最合适的解决方案。\\n\\n通过这些步骤,可以有效改善长文本的输出效果,提供更流畅的用户体验。\",\"messageId\":10097,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:28:43', 128); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2123, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10098,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:38:38', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2124, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:38:38', 209); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2125, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程是一门综合性强、注重理论与实践相结合的基础课程。它旨在通过系统化的教学内容,提升学生的道德修养、法律意识以及社会责任感。以下是该课程的核心内容:\\n\\n### 1. 教学目标\\n- **培养社会主义核心价值观**:引导学生树立正确的世界观、人生观和价值观。\\n- **提升道德修养与法治意识**:帮助学生形成良好的道德品质,并增强法律观念,成为遵纪守法的公民。\\n- **解决实际困惑**:通过理论学习和案例分析,指导学生在现实生活中处理思想、道德和法律问题。\\n\\n### 2. 教学内容\\n- **思想部分**:\\n - 马克思主义基本原理\\n - 毛泽东思想与中国特色社会主义理论体系\\n - 习近平新时代中国特色社会主义思想\\n\\n- **道德部分**:\\n - 个人品德修养(诚实、守信等)\\n - 家庭美德\\n - 社会公德与集体主义精神\\n\\n- **法治部分**:\\n - 法律基础知识(宪法、刑法、民法)\\n - 依法治国原则\\n - 法律权利与义务的行使\\n\\n### 3. 教学方法\\n- **理论学习**:通过课堂讲授和案例分析,帮助学生理解抽象概念。\\n- **实践环节**:包括社会调查、志愿服务等,增强学生的社会责任感。\\n\\n### 4. 考核方式\\n- 综合评估学生的学习态度、考试成绩及实践活动表现,评定最终成绩。\\n\\n### 5. 适用对象\\n主要面向大学生,尤其是需要全面提升综合素质的学生群体。\\n\\n通过这门课程的学习,学生不仅能提升自身的道德品质和法律意识,还能更好地适应社会,成为有能力且有责任感的社会主义建设者和接班人。\",\"messageId\":10099,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:38:53', 123); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2126, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10100,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:42:23', 150); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2127, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:42:23', 197); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2128, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1 + 2 equals **3**.\",\"messageId\":10101,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:42:24', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2129, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10102,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:43:19', 185); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2130, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:43:19', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2131, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"The sum of 1 and 2 is **3**.\",\"messageId\":10103,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:43:19', 115); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2132, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10104,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:43:34', 170); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2133, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:43:34', 88); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2134, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"“思想道德与法治”课程是一门综合性强、内容丰富的学科,旨在提升大学生的思想道德素质和法治意识。以下是关于该课程的详细分析:\\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通过系统学习和实践活动,学生能够全面提升思想道德素质和法治意识,为未来社会发展贡献力量。\",\"messageId\":10105,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:43:50', 128); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2135, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10106,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:45:32', 121); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2136, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:45:32', 193); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2137, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"### 思想道德与法治课程介绍\\n\\n**课程概述:**\\n\\n“思想道德与法治”是高等院校的一门核心课程,旨在培养学生的社会主义核心价值观、法律意识和社会责任感。该课程结合理论学习和实践应用,帮助学生树立正确的世界观、人生观和价值观。\\n\\n**课程目标:**\\n\\n1. **价值引领**:引导学生认同并践行社会主义核心价值观,形成积极向上的价值取向。\\n2. **法治教育**:培养学生的法治思维,了解基本法律知识,增强依法行事的意识。\\n3. **道德提升**:通过案例分析和社会实践,提高道德判断和决策能力,促进个人品德修养。\\n4. **社会责任感**:使学生理解社会公德、家庭美德和个人品德的重要性,增强服务社会的责任感。\\n\\n**课程内容:**\\n\\n1. **理论学习:**\\n - 马克思主义基本原理与思想道德建设\\n - 中华优秀传统文化中的道德智慧\\n - 社会主义核心价值观的内涵与实践\\n - 法治理念、法律体系及宪法精神\\n\\n2. **案例分析:**\\n - 通过真实案例,分析道德抉择和法律适用,帮助学生理解理论知识的实际应用。\\n\\n3. **社会实践:**\\n - 组织参观、志愿服务等活动,让学生在实践中体会思想道德建设和社会治理的重要性。\\n\\n**教学方法:**\\n\\n- **课堂讲授**:系统讲解理论知识。\\n- **小组讨论**:探讨热点问题,培养批判性思维。\\n- **角色扮演**:模拟情景,体验不同角色的道德和法律考量。\\n- **案例分析**:深入分析案例,提升解决问题的能力。\\n\\n**课程意义:**\\n\\n1. **个人成长**:帮助学生树立正确的价值观,提高道德修养和法治意识,促进全面发展。\\n2. **社会贡献**:培养有责任感和社会公德心的公民,为构建和谐社会贡献力量。\\n\\n通过这门课程的学习,学生不仅能够提升自身的综合素质,还能更好地适应社会发展的需要,成为有理想、有道德、有文化、有纪律的新时代人才。\",\"messageId\":10107,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:45:42', 114); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2138, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10108,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:54:05', 225); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2139, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:54:05', 136); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2140, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程是一门针对中国大学生的重要课程,旨在培养学生的社会主义核心价值观、法治意识和社会责任感。以下是对该课程的详细介绍:\\n\\n### 1. 课程概述\\n- **目标**:帮助学生树立正确的世界观、人生观和价值观,增强法治观念,提升社会责任感。\\n- **内容**:\\n - **绪论**:介绍课程的重要性及学习方法。\\n - **社会主义核心价值观**:涵盖国家、社会和个人层面的价值观。\\n - **新时代思想理念**:包括习近平新时代中国特色社会主义思想。\\n - **道德修养**:涉及个人品德和公共道德,强调诚信友善。\\n - **法律基础**:讲解宪法、刑法、民法等基本法律知识。\\n - **实践与应用**:通过案例分析和社会调查提升实际应用能力。\\n\\n### 2. 课程特点\\n- 理论与实践结合,注重培养解决实际问题的能力。\\n- 强调价值引领和法治导向,培养正确的价值观和守法意识。\\n\\n### 3. 学习意义\\n- 提升思想道德水平和个人修养。\\n- 增强法治意识,学会用法律保护自己。\\n- 全面发展,成为有责任感的公民。\\n\\n### 4. 教学安排\\n- **理论教学**:涵盖课程各部分内容。\\n- **实践教学**:通过案例分析和社会调查提升应用能力。\\n- **考试方式**:考核与考试相结合。\\n\\n### 5. 推荐教材\\n- 《思想道德与法治》(马克思主义出版社)。\\n\\n总之,该课程不仅传授理论知识,还注重培养学生的实际应用能力和责任感。学生将从中受益匪浅,成为有道德、懂法律、负责任的公民。\",\"messageId\":10109,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 14:54:19', 210); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2141, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10110,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:05:20', 121); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2142, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:05:20', 138); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2143, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"《思想道德与法治》是中国高校中的一门公共必修课程,主要面向本科生开设,旨在培养学生的社会主义核心价值观、法治观念和道德素质。该课程结合了思想教育、道德修养和法律知识的内容,强调理论学习与实践相结合。\\n\\n### 课程内容:\\n1. **思想教育**:包括马克思主义基本原理、中国特色社会主义理论体系、习近平新时代中国特色社会主义思想等内容,帮助学生树立正确的世界观、人生观和价值观。\\n2. **道德修养**:注重个人品德的培养,如爱国情怀、集体主义精神、诚信友善等,引导学生形成良好的道德品质和社会责任感。\\n3. **法治教育**:讲解宪法、法律的基本知识,分析案例,培养学生依法办事、依法维权的能力。\\n\\n### 教学方法:\\n- 理论讲授与案例分析相结合;\\n- 课堂讨论和实践教学(如模拟法庭、社会调查);\\n- 强调理论联系实际,注重培养学生的实践能力和法治思维。\\n\\n### 课程目标:\\n1. 帮助学生提高思想道德素质和法治意识;\\n2. 引导学生正确处理个人与社会的关系;\\n3. 培养学生具备良好的道德判断力和社会责任感。\\n\\n这门课程不仅帮助学生了解中国的法律体系,还注重培养学生的综合素质,为今后的学习、工作和生活奠定坚实的思想道德和法律基础。\",\"messageId\":10111,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:05:31', 200); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2144, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10112,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:10:22', 148); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2145, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:10:22', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2146, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"《思想道德与法治》是一门针对高校学生的公共必修课程,属于思想政治理论课的重要组成部分。该课程以马克思主义为指导,结合中国社会主义核心价值观和法律法规,旨在帮助学生树立正确的世界观、人生观、价值观,增强法治意识和社会责任感。\\n\\n### 课程内容\\n1. **思想教育**:学习马克思主义基本原理、中国特色社会主义理论体系,帮助学生形成科学的世界观和方法论。\\n2. **道德教育**:培养学生的社会主义核心价值观,提升道德素质和社会责任感,引导学生践行社会公德、职业道德和家庭美德。\\n3. **法治教育**:普及法律知识,增强法治观念,培养学生依法办事、依法维权的能力。\\n\\n### 课程目标\\n- 帮助学生提高思想道德素质和法治意识。\\n- 引导学生正确处理个人与集体、自由与纪律、权利与义务等关系。\\n- 培养学生适应社会、服务人民的能力。\\n\\n### 教学方法\\n- 理论学习:通过课堂讲授,帮助学生掌握思想道德和法律的基本原理。\\n- 实践教学:结合案例分析、情境模拟和社会实践活动,增强学生的实践能力和法治观念。\\n\\n这门课程不仅是一门理论课,更注重培养学生的综合素质和实际应用能力,为学生成长成才奠定坚实的思想基础。\",\"messageId\":10113,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:10:30', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2147, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10114,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:14:44', 124); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2148, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:14:44', 200); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2149, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治是中国普通高等学校的一门必修课程,属于思想政治理论课的重要组成部分。该课程以马克思主义为指导,紧密结合中国社会主义特色,旨在帮助学生树立正确的世界观、人生观和价值观,增强法治意识和社会责任感。\\n\\n### 课程主要内容:\\n1. **思想道德教育**:包括爱国主义、集体主义、社会主义教育,强调个人品德修养、社会公德、家庭美德和个人诚信等方面。\\n2. **法治教育**:介绍中国法律的基本原理、法律体系以及宪法和主要法律的重要性,培养学生的法治观念和依法行事的能力。\\n\\n### 教学目标:\\n- 提高学生的思想道德素质和法治意识。\\n- 培养学生分析问题和解决问题的能力,帮助其正确处理个人与社会的关系。\\n- 引导学生树立正确的价值取向和社会责任感。\\n\\n### 课程设置:\\n通常包括理论教学和实践环节。理论部分通过课堂讲授、案例分析等方式进行;实践环节可能包括参观法律机构、参与社会实践活动等。\\n\\n### 评价方式:\\n课程一般采用考试、论文、平时表现等多种方式进行综合评价。\\n\\n### 学习意义:\\n思想道德与法治课程不仅帮助学生掌握必要的法律知识,还能提升其思想道德素质,为学生的全面发展和社会和谐稳定做出贡献。\",\"messageId\":10115,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:14:51', 130); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2150, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10116,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:15:22', 123); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2151, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:15:22', 95); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2152, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程是一门旨在提升学生的道德修养和法治意识的基础性课程。以下是该课程的主要内容:\\n\\n### 1. **中国优秀传统文化**\\n - 探讨中国传统哲学,如儒家学说(孔子的“仁”,孟子的“义”)和道家思想(老子、庄子),并分析其现代意义。\\n\\n### 2. **社会主义核心价值观**\\n - 深入学习富强、民主、文明、和谐,自由、平等、公正、法治,爱国、敬业、诚信、友善等价值观,并探讨如何在日常生活中践行。\\n\\n### 3. **道德教育**\\n - 包括个人品德(如诚实守信)、社会公德和职业道德的培养,强调责任感和奉献精神。\\n\\n### 4. **法治教育**\\n - 讲解宪法和法律体系,分析依法行政、司法公正的重要性,并指导如何依法维权。\\n\\n### 5. **社会责任与新时代道德要求**\\n - 强调在新时代背景下,如何具备社会责任感,积极参与社会建设(如志愿服务、环保)。\\n\\n### 6. **案例分析**\\n - 通过历史和现实案例,展示思想道德和法治的实际应用,增强理论联系实际的能力。\\n\\n### 目标\\n- 提升学生的思想觉悟和法律意识。\\n- 培养正确的价值观、人生观和道德观。\\n- 帮助学生成为有道德、守法律的社会主义建设者。\\n\\n通过系统学习和实践,学生将能够更好地应对生活中的道德挑战,并在社会中发挥积极作用。\",\"messageId\":10117,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:15:34', 117); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2153, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10118,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:16:38', 228); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2154, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:16:38', 86); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2155, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"“思想道德与法治”课程是一门针对大学生的思想政治理论课,旨在培养学生的综合素质,结合思想、道德和个人行为规范以及法律知识,帮助学生形成正确的价值观、人生观和世界观。以下是对这门课程的详细介绍:\\n\\n### 1. 课程名称\\n- **思想道德与法治**\\n\\n### 2. 主要内容\\n\\n#### (1)绪论\\n- **课程性质**:思想政治理论课的重要组成部分。\\n- **学习意义**:帮助学生提升思想道德素质和法治素养,培养全面发展的社会主义建设者和接班人。\\n\\n#### (2)思想道德的理论基础\\n- **马克思主义基本原理**:提供科学的世界观和方法论。\\n- **社会主义核心价值观**:强调国家、社会和个人层面的价值导向。\\n- **中华优秀传统文化**:传承美德,弘扬传统。\\n\\n#### (3)法治基础与宪法法律知识\\n- **法理学基础**:了解法律的起源和作用。\\n- **中国法律体系**:涵盖宪法、刑法、民法等。\\n- **宪法内容与地位**:明确国家根本制度和任务。\\n- **法律权利与义务**:理解权利的行使和义务的履行。\\n\\n#### (4)道德的实践应用\\n- **道德修养**:提升个人品德和社会责任感。\\n- **社会功德**:关注公共利益,服务他人。\\n- **家庭美德**:处理好家庭关系,促进和谐。\\n- **个人品德**:培养自我约束能力。\\n\\n#### (5)法治思维与法律实务\\n- **法律思维**:运用法治视角分析问题。\\n- **法律实务**:学习解决实际问题的方法,如合同签订、权益维护等。\\n\\n### 3. 课程目标\\n\\n#### (1)提升素质\\n- **思想道德素质**:培养正确的价值观和良好的道德品质。\\n- **法治素养**:增强法律意识,了解基本法律知识。\\n\\n#### (2)培养能力\\n- **分析判断力**:识别和处理日常中的法律问题。\\n- **实践能力**:将理论应用于实际情境中。\\n\\n### 4. 学习要求\\n\\n#### (1)课前准备\\n- 预习教材内容,明确重点和疑问点。\\n\\n#### (2)课堂参与\\n- 积极参与讨论,深入理解课程内容。\\n\\n#### (3)课后复习\\n- 巩固知识,完成作业,加深理解和记忆。\\n\\n#### (4)社会实践\\n- 参与社会活动,践行道德规范和法治理念。\\n\\n### 5. 考核方式\\n\\n- **平时成绩**:出勤、课堂表现、作业完成情况。\\n- **期中考试**:测试对课程内容的掌握程度。\\n- **期末考试**:综合考察理论知识和应用能力。\\n\\n### 总结\\n通过“思想道德与法治”课程,学生将提升思想道德水平和法治意识,培养解决实际问题的能力。这不仅有助于个人成长,也为社会和谐与发展贡献力量。\",\"messageId\":10119,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:16:56', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2156, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:25:50', 111); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2157, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10120,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:25:50', 159); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2158, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Bad Gateway\",\"messageId\":10121,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:26:17', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2159, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10122,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:28:11', 115); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2160, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '0:0:0:0:0:0:0:1%0', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:28:11', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2161, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Forbidden\",\"messageId\":10123,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:28:12', 174); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2162, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10124,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:28:17', 141); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2163, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:28:17', 106); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2164, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Forbidden\",\"messageId\":10125,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:28:17', 128); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2165, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10126,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:29:04', 116); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2166, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:29:04', 104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2167, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '0:0:0:0:0:0:0:1%0', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Forbidden\",\"messageId\":10127,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:29:04', 115); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2168, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10128,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:47:02', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2169, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:47:03', 241); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2170, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Internal Server Error\",\"messageId\":10129,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:47:04', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2171, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+2\",\"messageId\":10130,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:47:58', 194); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2172, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:47:58', 100); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2173, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Internal Server Error\",\"messageId\":10131,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:47:58', 138); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2174, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+1\",\"messageId\":10132,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:48:10', 109); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2175, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:48:11', 87); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2176, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Internal Server Error\",\"messageId\":10133,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:48:11', 194); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2177, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+1\",\"messageId\":10134,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:49:48', 175); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2178, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:49:48', 89); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2179, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"❌ 出错了: 请求失败: Internal Server Error\",\"messageId\":10135,\"messageType\":\"3\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:49:48', 114); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2180, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1+1\",\"messageId\":10136,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:51:27', 136); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2181, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:51:27', 85); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2182, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"1 + 1 equals **2**.\",\"messageId\":10137,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:51:28', 114); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2183, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10138,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:51:40', 114); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2184, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:51:40', 91); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2185, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"### 思想道德与法治课程介绍\\n\\n**思想道德与法治**是一门针对大学生开设的公共必修课程,旨在通过理论教学和实践教育相结合的方式,培养学生的社会主义核心价值观,提升其思想道德素质和法治意识。该课程是高校思想政治教育的重要组成部分,对于帮助学生树立正确的世界观、人生观、价值观具有重要作用。\\n\\n#### 一、课程内容\\n1. **思想教育** \\n - 马克思主义基本原理(如马克思主义哲学、政治经济学) \\n - 中国特色社会主义理论体系(如毛泽东思想、邓小平理论、“三个代表”重要思想、科学发展观、习近平新时代中国特色社会主义思想) \\n - 中国梦的内涵与实现路径 \\n\\n2. **道德教育** \\n - 社会主义核心价值观(富强、民主、文明、和谐;自由、平等、公正、法治;爱国、敬业、诚信、友善) \\n - 个人品德修养(如诚实守信、友善待人、勤俭节约等) \\n - 家庭美德与社会公德 \\n\\n3. **法治教育** \\n - 宪法和法律的基本原则(如国家机构的组织和职权、公民的基本权利和义务) \\n - 刑法、民法、行政法等相关法律法规 \\n - 法治思维的培养与实践 \\n\\n#### 二、课程目标\\n- 帮助学生树立正确的世界观、人生观和价值观,增强社会责任感和历史使命感。 \\n- 提高学生的道德修养,培养良好的道德品质和社会责任感。 \\n- 强化法治意识,了解基本法律知识,提升依法行事的能力。 \\n\\n#### 三、教学方法\\n1. **理论讲授**:通过课堂讲解,系统传授思想道德与法治的基本理论和知识。 \\n2. **案例分析**:结合实际案例,深入分析社会现象背后的法律、道德问题。 \\n3. **实践环节**:组织参观、模拟法庭、情景剧表演等活动,增强学生的体验感和参与感。 \\n\\n#### 四、学习效果\\n- 增强学生的社会主义核心价值观认同感。 \\n- 提高学生的思想道德素质和法治意识。 \\n- 为学生成长为德才兼备的社会主义建设者和接班人奠定基础。 \\n\\n通过这门课程的学习,学生不仅能够更好地理解国家的法律法规和社会道德规范,还能够在未来的生活中做到知法守法、明德向善,成为有责任感的社会公民。\",\"messageId\":10139,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:51:52', 203); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2186, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10140,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:52:39', 118); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2187, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:52:39', 81); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2188, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"### 思想道德与法治课程介绍\\n\\n**思想道德与法治**是一门针对中国高校学生的公共基础必修课程,旨在培养学生的综合素质,提升其思想道德水平和法治意识。该课程结合马克思主义基本原理、中国特色社会主义理论体系以及中华优秀传统文化,帮助学生树立正确的世界观、人生观和价值观。\\n\\n#### **课程目标**\\n1. **思想政治教育**:引导学生学习马克思主义基本原理、毛泽东思想、邓小平理论、“三个代表”重要思想、科学发展观以及习近平新时代中国特色社会主义思想。\\n2. **道德品质培养**:提升学生的道德修养,帮助其理解社会主义核心价值观,并在家庭、学校和社会生活中践行良好的道德规范。\\n3. **法治意识强化**:通过学习宪法、法律和法规,增强学生的法律意识,培养学生依法行事的能力和法治思维。\\n\\n#### **主要内容**\\n1. **思想教育**:\\n - 马克思主义基本原理\\n - 中国共产党思想政治教育的历史与实践\\n - 习近平新时代中国特色社会主义思想\\n\\n2. **道德教育**:\\n - 社会主义核心价值观\\n - 中华传统美德\\n - 职业道德和社会责任\\n\\n3. **法治教育**:\\n - 宪法和法律基础知识\\n - 刑法、民法、行政法等基本内容\\n - 法治社会的建设与个人权利义务\\n\\n#### **教学方法**\\n- 理论讲授:通过课堂教学系统讲解思想道德和法律的基本理论。\\n- 案例分析:结合实际案例,增强学生的理解和应用能力。\\n- 实践环节:组织参观、模拟法庭、法治辩论等活动,强化实践体验。\\n\\n#### **课程意义**\\n- **提升综合素质**:帮助学生全面发展,在思想、道德和法治方面打下坚实基础。\\n- **培养社会责任感**:引导学生树立正确的价值观,增强社会责任感和历史使命感。\\n- **促进终身发展**:为学生的未来发展提供思想道德和法律保障,使其更好地适应社会。\\n\\n通过这门课程的学习,学生不仅能提升自身的综合素质,还能为未来的学习和生活奠定坚实的理论基础和社会责任感。\",\"messageId\":10141,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:52:51', 190); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2189, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10142,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:56:48', 113); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2190, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:56:48', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2191, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程是一门综合性强、内容丰富的课程,旨在培养学生的综合素质和社会责任感。以下是该课程的详细介绍:\\n\\n### 一、课程概述\\n思想道德与法治课程是针对大学生开设的基础必修课,结合了理论学习和实践要求。课程设计注重知识传授与能力培养并重,帮助学生树立正确的世界观、人生观和价值观。\\n\\n### 二、主要内容模块\\n1. **中国特色社会主义思想**\\n - 探讨马克思主义基本原理及其在中国的运用和发展。\\n - 学习习近平新时代中国特色社会主义思想,了解其历史背景和现实意义。\\n\\n2. **中国共产党概论**\\n - 回顾党的发展历程,分析党的领导地位和作用。\\n - 理解党的政策制定过程及对国家发展的指导作用。\\n\\n3. **社会主义核心价值观**\\n - 强调社会公德、职业道德和个人品德的培养。\\n - 指导学生在日常生活中践行社会主义核心价值观。\\n\\n4. **中华优秀传统文化**\\n - 介绍儒家思想、道家哲学等文化精髓,提升文化自信。\\n - 探讨传统文化在现代社会中的传承与发展。\\n\\n5. **法律基础**\\n - 讲解宪法、刑法、民法等基本法律知识。\\n - 强调国家安全和网络法治的重要性,培养法治思维。\\n\\n### 三、课程目标\\n- 提升理论素养,增强法治观念。\\n- 培养道德修养和社会责任感。\\n- 锻炼实践能力,提高解决实际问题的能力。\\n\\n### 四、学习方法建议\\n1. **理论联系实际**:结合社会现象和自身经历理解理论知识。\\n2. **参与社会实践**:通过志愿服务等活动提升综合素质。\\n3. **案例分析**:关注时事热点,运用所学知识进行分析讨论。\\n4. **注重积累**:广泛阅读,扩展知识面。\\n\\n### 五、考核方式\\n- 平时成绩(课堂表现、作业完成情况)\\n- 期中和期末考试\\n- 社会实践报告\\n- 课堂互动参与度\\n\\n通过系统学习和积极参与,学生不仅能掌握必要的理论知识,还能提升道德修养和法治意识,为未来发展奠定坚实基础。\",\"messageId\":10143,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:57:05', 122); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2192, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"思想道德与法治课程介绍\",\"messageId\":10144,\"messageType\":\"1\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:57:22', 181); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2193, 1, 'AI聊天会话', 2, 'com.study.system.controller.AiChatSessionController.updateSessionTime()', 'PUT', 1, 'admin', NULL, '/aichatsession/updateTime/1009', '127.0.0.1', '', '1009', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:57:22', 94); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2194, 1, 'AI聊天消息', 1, 'com.study.system.controller.AiChatMessageController.add()', 'POST', 1, 'admin', NULL, '/aichatmessage', '127.0.0.1', '', '{\"messageContent\":\"### 思想道德与法治课程学习计划\\n\\n为了系统地掌握思想道德与法治课程内容并有效应用所学知识,我制定了以下学习计划:\\n\\n1. **绪论部分**:\\n - 了解课程的重要性,明确学习目标和方法。\\n - 反思自身的思想道德现状,设定改进方向。\\n\\n2. **社会主义核心价值观**:\\n - 记忆并理解国家、社会和个人层面的价值观。\\n - 关注时事新闻,分析如何体现这些价值观。\\n\\n3. **习近平新时代中国特色社会主义思想**:\\n - 学习具体内容,如“五位一体”总体布局和“四个全面”战略布局。\\n - 了解中国梦的内涵,并思考个人在实现中的角色。\\n\\n4. **中华优秀传统文化**:\\n - 阅读经典文献,理解传统道德理念。\\n - 参与传统文化活动,体验节日习俗的意义。\\n\\n5. **法律基础**:\\n - 学习宪法、刑法和民法典的基本内容。\\n - 通过案例分析理解法律条文的实际应用。\\n\\n6. **网络生活与道德规范**:\\n - 分析自身网络行为,识别并避免不道德或违法行为。\\n - 关注网络安全新闻,了解防护措施。\\n\\n7. **职业素养与社会责任**:\\n - 研究不同职业的职业道德要求。\\n - 制定个人职业生涯规划,融入社会责任感。\\n\\n8. **实践应用**:\\n - 参与社会实践活动,如志愿服务,提升责任感。\\n - 将所学知识应用于日常生活和学习中,解决实际问题。\\n\\n9. **定期复习与总结**:\\n - 每周复习课程内容,整理笔记和心得。\\n - 总结学习成果,调整学习方法,确保持续进步。\\n\\n通过以上计划,我期望能够在思想、法律和职业等方面全面提升自己,成为一名具备高尚道德和法治素养的高素质人才。\",\"messageId\":10145,\"messageType\":\"2\",\"params\":{},\"sessionId\":1009,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2025-12-25 15:57:38', 196); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2195, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/user/editSecretKey/128', '0:0:0:0:0:0:0:1%0', '', '[128]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-04 10:52:06', 301); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2196, 1, '系统消息', 1, 'com.study.information.controller.BaseNoticeController.add()', 'POST', 1, '15202903074', NULL, '/notice', '0:0:0:0:0:0:0:1%0', '', '{\"content\":\"

通知公告

\",\"createBy\":\"128\",\"createTime\":\"2026-01-04 10:53:12\",\"id\":60,\"msgState\":1,\"msgType\":2,\"params\":{},\"publishTime\":\"2026-01-04 10:53:12\",\"schId\":1,\"sendScope\":1,\"sendState\":0,\"sendType\":1,\"title\":\"1月4日通知公告\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-04 10:53:14', 1037); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2197, 1, '用户消息表', 2, 'com.study.information.controller.BaseMessageRelController.read()', 'PUT', 1, '姜二琦', NULL, '/messageRel/read/839', '127.0.0.1', '', '839', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-04 10:53:42', 97); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2198, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":100,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-10 22:57:00', 146); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2199, 1, '定时任务', 2, 'com.study.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"jobId\":102,\"misfirePolicy\":\"0\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-10 22:57:03', 119); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2200, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"endDate\":\"2026-07-15\",\"id\":14,\"isCurrent\":1,\"isDel\":0,\"isSemester\":1,\"name\":\"第二学期\",\"params\":{},\"pid\":6,\"schoolId\":1,\"startDate\":\"2026-03-01\",\"state\":0,\"updateTime\":\"2026-01-10 23:10:11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-10 23:10:12', 129); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2201, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"endDate\":\"2026-07-15\",\"id\":14,\"isCurrent\":1,\"isDel\":0,\"isSemester\":1,\"name\":\"第二学期\",\"params\":{},\"pid\":6,\"schoolId\":1,\"startDate\":\"2026-03-01\",\"state\":0,\"updateTime\":\"2026-01-10 23:10:27\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-10 23:10:27', 104); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2202, 1, '系统备份', 1, 'com.study.setting.controller.BaseBackupController.backup()', 'POST', 1, 'admin', NULL, '/backup/do/1', '0:0:0:0:0:0:0:1%0', '', '\"1\"', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-11 00:00:11', 58674); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2203, 2, '部门管理', 3, 'com.study.system.controller.SysDeptController.remove()', 'DELETE', 1, '13388880001', NULL, '/dept/15', '127.0.0.1', '', '15', '{\"msg\":\"存在下级部门,不允许删除\",\"code\":601}', 0, NULL, '2026-01-11 20:37:31', 31); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2204, 2, '部门管理', 3, 'com.study.system.controller.SysDeptController.remove()', 'DELETE', 1, '13388880001', NULL, '/dept/14', '127.0.0.1', '', '14', '{\"msg\":\"存在下级部门,不允许删除\",\"code\":601}', 0, NULL, '2026-01-11 20:38:24', 98); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2205, 1, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '15666666666', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":8,\"createBy\":\"2\",\"createTime\":\"2026-01-11 21:38:38\",\"id\":251,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"1111\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":8,\"createBy\":\"2\",\"createTime\":\"2026-01-11 21:38:39\",\"id\":251,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":1,\"state\":1,\"subChapters\":[],\"title\":\"1111\"}}', 0, NULL, '2026-01-11 21:38:38', 123); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2206, 2, '课程信息', 1, 'com.study.teaching.controller.BaseCourseController.add()', 'POST', 1, '13388880001', NULL, '/course', '127.0.0.1', '', '{\"courseDesc\":\"

33

\",\"courseState\":1,\"courseType\":\"1\",\"coverUrl\":\"/statics/2026/01/11/PixPin_2026-01-10_23-03-29_20260111214351A001.png\",\"createBy\":\"100\",\"createTime\":\"2026-01-11 21:43:59\",\"id\":45,\"isUse\":1,\"label\":\"22\",\"name\":\"11\",\"params\":{},\"resource\":\"[]\",\"reviewState\":1,\"schoolId\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-11 21:44:00', 65); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2207, 2, '章节信息', 1, 'com.study.teaching.controller.BaseChapterController.add()', 'POST', 1, '13388880001', NULL, '/chapter', '127.0.0.1', '', '{\"courseId\":45,\"createBy\":\"100\",\"createTime\":\"2026-01-11 21:44:09\",\"id\":252,\"isDel\":0,\"isOpen\":1,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":2,\"state\":1,\"subChapters\":[],\"title\":\"2233\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"courseId\":45,\"createBy\":\"100\",\"createTime\":\"2026-01-11 21:44:10\",\"id\":252,\"isDel\":0,\"isOpen\":1,\"isPass\":0,\"level\":1,\"params\":{},\"pid\":0,\"refCount\":0,\"schoolId\":2,\"state\":1,\"subChapters\":[],\"title\":\"2233\"}}', 0, NULL, '2026-01-11 21:44:10', 82); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2208, 1, '基础题库', 5, 'com.study.examine.controller.BaseExamQuestionController.export()', 'POST', 1, 'admin', NULL, '/examQuestion/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"id\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2026-01-12 09:43:42', 2035); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2209, 1, '基础题库', 5, 'com.study.examine.controller.BaseExamQuestionController.export()', 'POST', 1, 'admin', NULL, '/examQuestion/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"id\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2026-01-12 09:44:01', 1221); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2210, 1, '基础题库', 5, 'com.study.examine.controller.BaseExamQuestionController.export()', 'POST', 1, 'admin', NULL, '/examQuestion/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"id\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2026-01-12 09:53:43', 2057); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2211, 1, '学生信息', 5, 'com.study.system.controller.BaseStudentController.export()', 'POST', 1, 'admin', NULL, '/student/export', '127.0.0.1', '', '{\"schId\":\"1\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"joinTime\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2026-01-14 11:15:01', 1101); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2212, 1, '教师管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '127.0.0.1', '', '{\"schId\":\"1\",\"userTypes[1]\":\"22\",\"userTypes[0]\":\"11\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"joinTime\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2026-01-14 11:16:27', 312); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2213, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 13188889999 导入成功\",\"code\":200}', 0, NULL, '2026-01-14 11:20:13', 688); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2214, 1, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, 'admin', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 15377778888 导入成功\",\"code\":200}', 0, NULL, '2026-01-14 11:24:16', 880); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2215, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"T998888\",\"createBy\":\"admin\",\"createTime\":\"2026-01-14 11:20:13\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\",\"userId\":145},{\"classId\":6,\"deptCode\":\"D002\",\"deptId\":6,\"deptName\":\"思政2102班\",\"userId\":145},{\"classId\":32,\"deptCode\":\"cls003\",\"deptId\":32,\"deptName\":\"2021界思政2103班\",\"userId\":145},{\"classId\":33,\"deptCode\":\"cls004\",\"deptId\":33,\"deptName\":\"2021界思政2104班\",\"userId\":145}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"7799@qq.com\",\"joinTime\":\"2025-12-26\",\"loginDate\":\"2026-01-14 11:21:32\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"haha88\",\"params\":{},\"phoneNumber\":\"13188889999\",\"remark\":\"wu\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":145,\"userName\":\"13188889999\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-14 11:26:19', 790); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2216, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T998888\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2026-01-01\",\"nickName\":\"haha88\",\"params\":{},\"phoneNumber\":\"13188889999\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"1\",\"status\":\"0\",\"userType\":\"22\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2026-01-14 11:27:16', 90); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2217, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T998888\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2026-01-01\",\"nickName\":\"haha88\",\"params\":{},\"phoneNumber\":\"13188889999\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"1\",\"status\":\"0\",\"userType\":\"22\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2026-01-14 11:27:26', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2218, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T998888\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2026-01-01\",\"nickName\":\"haha88\",\"params\":{},\"phoneNumber\":\"13188889999\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"1\",\"status\":\"0\",\"userType\":\"22\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2026-01-14 11:31:19', 20940); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2219, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T998888\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2026-01-01\",\"nickName\":\"haha88\",\"params\":{},\"phoneNumber\":\"13188889999\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"1\",\"status\":\"0\",\"userType\":\"22\"}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2026-01-14 11:33:28', 19691); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2220, 1, '教师管理', 1, 'com.study.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"code\":\"T998888\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"-\",\"joinTime\":\"2026-01-01\",\"nickName\":\"haha88\",\"params\":{},\"phoneNumber\":\"13188889999\",\"roleId\":2,\"roleIds\":[2],\"schId\":1,\"sex\":\"1\",\"status\":\"0\",\"userName\":\"haha88\",\"userType\":\"22\"}', '{\"msg\":\"新增用户\'haha88\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2026-01-14 11:33:43', 6685); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2221, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"/statics/2026/01/14/file_20260114113523A001.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAGQAZADAREAAhEBAxEB/8QAHwAAAQIHAQEAAAAAAAAAAAAAAwIEAQUGBwgJCgAL/8QAXRAAAQIEBAQDBQUFBQQECQgLAQIDBAUGEQAHITEIEkFRCRNhFCJxgZEVobHB8AoyQtHhFhcjUvEYJDNiJidDchklKDQ1RYKSojZEU2Rnc3eyGkhWY2Z2hKfC0uL/xAAeAQABBAMBAQEAAAAAAAAAAAADAQIEBQAGBwgJCv/EAFkRAAEDAgQDBgMGBQIDBAYBFQECAxEEIQAFEjEGQVEHEyJhcYGRofAIFDKxwdEVI0Lh8SRSFjNiFyVDkhgmNERTcoKiNUUnNkdkZVRVVmZzdHWUo7LS4vL/2gAMAwEAAhEDEQA/AOMHkJA6aj6d9/uxyfH0XSSZkc4tz/P6tywoNqvsSO4H+vXCSOo+OHgXgyPlFp54N5agBYdBYddtN/64GoJ3B57SPPpg6EE2Hrym5jl6HfpvgqWvTW+gUbEka6DrrhmJyGFK0gagPCCSLDaeQ5evK3ImDKj321sPj37W10sBvbA1uBPMRG5PP65YlJonY8MkT0m/+B8+pGHKIUgX5ba9AdTYX1sT17g2164CXEEnxASeZ8/fE5igdHi8JEe29iYB5esYWqHV/Ck21137bi9x9NcQ3XSSARa8RzjnzmfgPbFkzlpgqCSSoCwBEECTtcjmfjY4ntLwanJ/Kk8uhjGiQdAfeAH3nqe3xFRmr5Tl9VcJhlcGdrc+m3IDaDi4y3KVrqmf5R0hxBmCDc8ied72vcHG33xFqObl/CN4b82YZSHZ3Q+cqohSU2KlQFYSRlN7amwcOmpA+Nz5p7DQ5S8ddr7zxOivzDJahsFRNw1XsKPQWbG1jBGJzVA5mGbZ5TtIBXQV1KhSeaA7SoWLbn8MzBuZ6TqFh5O8tSRYg2/h1NrXIFwTcncdL6Y9LmtbSRfkfX5Rv7Y2FjhKpeMFJEm48vOeZMb3HnidtSJzQhs7fwgDsLX5b7dx02O+I7maBPh1jlEm/SLRJk9bAzIEzsVJwU+QR3', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-14 11:35:24', 1078); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2222, 1, '教师管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/145', '127.0.0.1', '', '[145]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-14 11:35:45', 357); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2223, 1, '学生信息', 3, 'com.study.system.controller.BaseStudentController.remove()', 'DELETE', 1, 'admin', NULL, '/student/22', '127.0.0.1', '', '[22]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-14 11:36:30', 134); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2224, 1, '学生信息', 1, 'com.study.system.controller.BaseStudentController.add()', 'POST', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"avatar\":\"/statics/2026/01/14/file_20260114113709A002.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAGQAZADAREAAhEBAxEB/8QAHwAAAQIHAQEAAAAAAAAAAAAAAwIEAQUGBwgJCgAL/8QAXRAAAQIEBAQDBQUFBQQECQgLAQIDBAUGEQAHITEIEkFRCRNhFCJxgZEVobHB8AoyQtHhFhcjUvEYJDNiJidDchklKDQ1RYKSojZEU2Rnc3eyGkhWY2Z2hKfC0uL/xAAeAQABBAMBAQEAAAAAAAAAAAADAQIEBQAGBwgJCv/EAFkRAAEDAgQDBgMGBQIDBAYBFQECAxEEIQAFEjEGQVEHEyJhcYGRofAIFDKxwdEVI0Lh8SRSFjNiFyVDkhgmNERTcoKiNUUnNkdkZVRVVmZzdHWUo7LS4vL/2gAMAwEAAhEDEQA/AOMHkJA6aj6d9/uxyfH0XSSZkc4tz/P6tywoNqvsSO4H+vXCSOo+OHgXgyPlFp54N5agBYdBYddtN/64GoJ3B57SPPpg6EE2Hrym5jl6HfpvgqWvTW+gUbEka6DrrhmJyGFK0gagPCCSLDaeQ5evK3ImDKj321sPj37W10sBvbA1uBPMRG5PP65YlJonY8MkT0m/+B8+pGHKIUgX5ba9AdTYX1sT17g2164CXEEnxASeZ8/fE5igdHi8JEe29iYB5esYWqHV/Ck21137bi9x9NcQ3XSSARa8RzjnzmfgPbFkzlpgqCSSoCwBEECTtcjmfjY4ntLwanJ/Kk8uhjGiQdAfeAH3nqe3xFRmr5Tl9VcJhlcGdrc+m3IDaDi4y3KVrqmf5R0hxBmCDc8ied72vcHG33xFqObl/CN4b82YZSHZ3Q+cqohSU2KlQFYSRlN7amwcOmpA+Nz5p7DQ5S8ddr7zxOivzDJahsFRNw1XsKPQWbG1jBGJzVA5mGbZ5TtIBXQV1KhSeaA7SoWLbn8MzBuZ6TqFh5O8tSRYg2/h1NrXIFwTcncdL6Y9LmtbSRfkfX5Rv7Y2FjhKpeMFJEm48vOeZMb3HnidtSJzQhs7fwgDsLX5b7dx02O+I7maBPh1jlEm/SLRJk9bAzIEzsVJwU+QR3Z2lUJMggjfYgR6', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-14 11:37:09', 436); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2225, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"/statics/2026/01/14/file_20260114115622A003.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAGQAZADAREAAhEBAxEB/8QAHwAAAQMFAQEBAAAAAAAAAAAAAwIEBQABBggJCgcL/8QAXxAAAQIEBAQDBQUFBQMGCgQPAQIRAwQFIQAGMUEHElFhCHGBCRMikaEUscHR8AoVMkLhFiNSYvEXJHIYGTNUkpUlJicoNDdDRFOCNTaFshpFR0hVY2Vmc3WGk6LC0v/EAB4BAAEEAwEBAQAAAAAAAAAAAAMBAgQFAAYHCAkK/8QAXxEAAQIEBAMGAwYEAwQECgEVAQIRAwQhMQAFEkEGUWETInGBkfAHodEIFDKxweEVI0LxFlJiFxgkkiUzcoIJJjQ1Q0RFU1SiNlV1k5Sy0hk3Y4VkZWZzdIOElZakpf/aAAwDAQACEQMRAD8A8Ww4M5Q3gVA9P99iD56vv0/Pjh43zpnC5b/7Cj8udOdejY+lI+yr8NwKy2bmjuc0mALPcEW/LrajwayaC3uak/QTsQt8w+jf12Z/jnO/80v/APYUYJ/ur/DEUVL5wk8jmswMKHBrJm8CpW3M7FD/AE23xg45zyrqlun8hIb6+6Ycn7K/wuZjLZwS1xmsyavQkBqM7gYIngvkw6wKhfRp+I/y5de337IeOc8/zy1Kn+QmwBf9reeDJ+yp8LiW+7Zuen8WmerOzts3VwwwYcFMlk/+j1Fuv26N+QwxXHeeAga5cc/+HR06nZ/liQPspfCkEvLZwWd2zeaFByv+e9g1X0twLyRGUAqBUgDYNUIlz8rXtruMRonxBz1AV35YkOf/ACdHXmNmNnfEqH9kz4TKYmUzkul2/jM0LsxFHN3+rPiYnfD/AJAlpT3ol6n7z4dajHILm7/cQNxY6tCgfEfiOJF0qXK6S7NLo2diDUGwB3qHY4slfZG+DogFYks77TYfxuaYV3ruzAlvDljp4JZJ/wCr1Ju0/G0+RYnv8sWn+PM9p35f/wCwItsxbFYr7JvwnJpJ5ylmcfxmbIHOpHiwwk8FMkPaBUR2M/FJ+4fdjP8AHme/55f/AOwIp7o59Bga/sm/Ctu5K5w70H', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-14 11:56:23', 810); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2226, 1, '章节内容信息', 2, 'com.study.teaching.controller.BaseChapterContentController.batchProcess()', 'POST', 1, 'admin', NULL, '/chapterContent/batch', '0:0:0:0:0:0:0:1%0', '', '[{\"chapterId\":48,\"chapterType\":101,\"content\":\"


\",\"createTime\":\"2026-01-16 14:59:16\",\"id\":1239,\"params\":{},\"schoolId\":1},{\"chapterId\":48,\"chapterType\":102,\"content\":\"\",\"createTime\":\"2026-01-16 14:59:16\",\"id\":1240,\"params\":{},\"schoolId\":1},{\"chapterId\":48,\"chapterType\":2,\"content\":\"\",\"createTime\":\"2026-01-16 14:59:16\",\"id\":1241,\"params\":{},\"schoolId\":1},{\"chapterId\":48,\"chapterType\":1,\"content\":\"[{\\\"name\\\":\\\"深圳博瑞联三维技术有限公司-2025_20260116134550A005.pdf\\\",\\\"url\\\":\\\"/statics/2026/01/16/深圳博瑞联三维技术有限公司-2025_20260116134550A005.pdf\\\",\\\"size\\\":21849855,\\\"type\\\":\\\"PDF\\\",\\\"source\\\":\\\"本地上传\\\"},{\\\"name\\\":\\\"第5章 遵守道德规范 锤炼道德品格_20260116135633A006.pptx\\\",\\\"url\\\":\\\"/statics/2026/01/16/第5章 遵守道德规范 锤炼道德品格_20260116135633A006.pptx\\\",\\\"size\\\":9064650,\\\"type\\\":\\\"PPTX\\\",\\\"source\\\":\\\"本地上传\\\"}]\",\"createTime\":\"2026-01-16 14:59:16\",\"id\":1242,\"params\":{},\"schoolId\":1},{\"chapterId\":48,\"chapterType\":7,\"content\":\"\",\"createTime\":\"2026-01-16 14:59:16\",\"id\":1243,\"params\":{},\"schoolId\":1},{\"chapterId\":48,\"chapterType\":9,\"content\":\"\",\"createTime\":\"2026-01-16 14:59:16\",\"id\":1244,\"params\":{},\"schoolId\":1},{\"chapterId\":48,\"chapterType\":103,\"content\":\"\",\"createTime\":\"2026-01-16 14:59:16\",\"id\":1245,\"params\":{},\"schoolId\":1},{\"chapterId\":48,\"chapterType\":10,\"content\":\"\",\"createTime\":\"2026-01-16 14:59:16\",\"id\":1246,\"params\":{},\"schoolId\":1},{\"chapterId\":48,\"chapterType\":5,\"content\":\"\",\"createTime\":\"2026-01-16 14:59:17\",\"id\":1247,\"params\":{},\"schoolId\":1},{\"chapterId\":48,\"chapterType\":8,\"content\":\"\",\"createTime\":\"2026-01-16 14:59:17\",\"id\":1248,\"params\":{},\"schoolId\":1},{\"chapterId\":48,\"chapterType\":104,\"content\":\"\",\"createTime\":\"2026-01-16 14:59:17\",\"id\":1249,\"params\":{},\"schoolId\":1}]', '{\"msg\":\"批量处理成功\",\"code\":200}', 0, NULL, '2026-01-16 14:59:17', 1716); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2227, 1, '上课信息', 1, 'com.study.teaching.controller.BaseClassSchController.createComplete()', 'POST', 1, 'admin', NULL, '/classSchedule/createComplete', '127.0.0.1', '', '{\"classSchedule\":{\"academicId\":14,\"address\":\"scdads\",\"classType\":1,\"courseId\":46,\"courseName\":\"改革开放四十周年成就展002\",\"createBy\":\"1\",\"createTime\":\"2026-01-16 15:22:25\",\"endDate\":\"2026-03-28\",\"id\":19,\"isDel\":0,\"params\":{},\"schId\":1,\"startDate\":\"2025-12-02\",\"state\":1,\"status\":2},\"orgIds\":[5,6],\"teacherIds\":[2,115,116,125,137,141,144],\"weekList\":[{\"classSchId\":19,\"endTime\":\"20:21\",\"params\":{},\"startTime\":\"08:21\",\"weekInfo\":1}]}', '{\"msg\":\"上课安排创建成功\",\"code\":200,\"data\":19}', 0, NULL, '2026-01-16 15:22:26', 5695); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2228, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2026-01-16 15:31:13\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2026/01/16/3_20260116153050A001.png\",\"mail\":\"lj7788@126.com\",\"manager\":\"haha\",\"mgrGender\":\"0\",\"mgrPhone\":\"13384994320\",\"params\":{},\"schoolId\":22,\"schoolName\":\"haha学院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2026-01-16 15:31:13\",\"userId\":146}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-16 15:31:14', 816); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2229, 22, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, '13384994320', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"\",\"code\":\"T001\",\"createBy\":\"admin\",\"createTime\":\"2026-01-16 15:31:13\",\"delFlag\":\"0\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"email\":\"lj7788@126.com\",\"loginDate\":\"2026-01-16 15:31:53\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"haha\",\"params\":{},\"phoneNumber\":\"13384994320\",\"remark\":\"院校管理员\",\"roleIds\":[],\"roles\":[],\"schId\":22,\"schName\":\"haha学院\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"13384994320\",\"userId\":146,\"userName\":\"13384994320\",\"userType\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-16 15:42:43', 750); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2230, 1, '基本信息', 2, 'com.study.setting.controller.BaseBasicInfoController.edit()', 'POST', 1, 'admin', NULL, '/baseInfo/update', '127.0.0.1', '', '{\"adminUrl\":\"http://www.admin.com\",\"aiRobotsDisplay\":1,\"aiRobotsIconPath\":\"/statics/2025/12/11/3479_20251211140038A004.gif\",\"appQrCodeDisplay\":1,\"appQrCodeImgPath\":\"/statics/2025/12/23/1_1069066339_171_85_3_1072128497_3d968cce5fe3247ee314241c7836c4b2_20251223165421A001.png\",\"contactAddress\":\"12\",\"contactEmail\":\"aaa@aab.com\",\"contactPhone\":\"13588888889\",\"copyright\":\"

©1999-2025北京创新乐知网络技术有限公司

\",\"grayFlag\":0,\"params\":{},\"portalUrl\":\"http://www.portal.com\",\"seoKeyWords\":\"seo程序瑕疵v现场v\",\"settingId\":1,\"sysLogoPath\":\"/statics/2026/01/16/3_20260116155504A002.png\",\"systemName\":\"中硕思政教学管理平台\",\"updateTime\":\"2026-01-16 15:55:07\",\"vxQrCodeDisplay\":1,\"vxQrCodeImgPath\":\"/statics/2025/12/11/u3473_20251211140033A003.png\",\"welcomeHint\":\"一站式思政教学平台,助力教师提升教学效果,帮助学生深化思想认识222\",\"welcomeMessage\":\"欢迎使用中硕思政教学平台11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-16 15:55:08', 145); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2231, 1, '教师管理', 5, 'com.study.system.controller.SysUserController.export()', 'POST', 1, 'admin', NULL, '/user/export', '127.0.0.1', '', '{\"schId\":\"1\",\"userTypes[1]\":\"22\",\"userTypes[0]\":\"11\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"joinTime\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2026-01-16 16:20:47', 1026); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2232, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 13388990098 导入成功\",\"code\":200}', 0, NULL, '2026-01-16 16:23:04', 479); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2233, 1, '教师管理', 3, 'com.study.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/147', '127.0.0.1', '', '[147]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-16 16:25:02', 335); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2234, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"\",\"code\":\"T0066\",\"createBy\":\"admin\",\"createTime\":\"2025-11-13 17:51:09\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"deptCode\":\"D001\",\"deptId\":5,\"deptName\":\"思政2101班\"}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"\",\"joinTime\":\"2025-11-12\",\"loginDate\":\"2025-12-18 10:37:36\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"haha66\",\"params\":{},\"phoneNumber\":\"13388990044\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":115,\"userName\":\"13388990044\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-16 16:28:14', 498); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2235, 1, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, 'admin', NULL, '/academic', '127.0.0.1', '', '{\"childCount\":0,\"id\":13,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":1,\"updateTime\":\"2026-01-16 17:40:11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-16 17:40:12', 203); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2236, 1, '教师管理', 6, 'com.study.system.controller.SysUserController.importData()', 'POST', 1, 'admin', NULL, '/user/importData', '127.0.0.1', '', '{\"schId\":\"1\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 15222222222 导入成功\",\"code\":200}', 0, NULL, '2026-01-16 17:42:17', 1587); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2237, 1, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"admin\":false,\"avatar\":\"/statics/2025/12/15/file_20251215104841A001.jpeg\",\"code\":\"1212\",\"createBy\":\"admin\",\"createTime\":\"2025-10-21 09:30:43\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":1,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[{\"classId\":5,\"deptId\":5,\"deptName\":\"思政2101班\"},{\"classId\":6,\"deptId\":6,\"deptName\":\"思政2102班\"}],\"deptCode\":\"-\",\"deptId\":1,\"deptName\":\"马克思主义学院\",\"email\":\"ry@qq.com\",\"joinTime\":\"2025-12-02\",\"loginDate\":\"2026-01-16 16:34:27\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"张大锤\",\"params\":{},\"phoneNumber\":\"15666666666\",\"pwdUpdateDate\":\"2025-10-21 09:30:43\",\"remark\":\"测试员\",\"roleId\":2,\"roleIds\":[2],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"2\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":2,\"roleKey\":\"common\",\"roleName\":\"教师\",\"roleSort\":2,\"status\":\"0\"}],\"schId\":1,\"schName\":\"中硕思政研究院\",\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":2,\"userName\":\"15666666666\",\"userType\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-16 18:07:43', 730); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2238, 2, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, '13388880001', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"\",\"code\":\"T00091\",\"createBy\":\"\",\"delFlag\":\"0\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":14,\"email\":\"mgr1@xx.com\",\"joinTime\":\"2025-12-02\",\"loginDate\":\"2026-01-19 11:10:54\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"石大鹏\",\"params\":{},\"phoneNumber\":\"13388880001\",\"remark\":\"管理员\",\"roleId\":101,\"roleIds\":[101],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":101,\"roleKey\":\"manager\",\"roleName\":\"管理员\",\"roleSort\":0,\"status\":\"0\"}],\"schId\":2,\"schName\":\"陕西研筑大学\",\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"13388880001\",\"userId\":100,\"userName\":\"13388880001\",\"userType\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 11:12:42', 896); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2239, 2, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, '13388880001', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"\",\"code\":\"T00091\",\"createBy\":\"\",\"delFlag\":\"0\",\"dept\":{\"ancestors\":\"0\",\"children\":[],\"deptId\":14,\"deptName\":\"马克思主义学院\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"status\":\"0\"},\"deptClassInfoList\":[],\"deptCode\":\"-\",\"deptId\":14,\"deptName\":\"马克思主义学院\",\"email\":\"mgr1@xx.com\",\"joinTime\":\"2025-12-02\",\"loginDate\":\"2026-01-19 11:14:03\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"石大鹏\",\"params\":{},\"phoneNumber\":\"13388880001\",\"remark\":\"管理员\",\"roleId\":101,\"roleIds\":[101],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":101,\"roleKey\":\"manager\",\"roleName\":\"管理员\",\"roleSort\":0,\"status\":\"0\"}],\"schId\":2,\"schName\":\"陕西研筑大学\",\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"13388880001\",\"userId\":100,\"userName\":\"13388880001\",\"userType\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 11:17:40', 750); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2240, 2, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, '13388880001', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"/statics/2026/01/19/file_20260119111806A001.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAGQAZADAREAAhEBAxEB/8QAHwAAAQIHAQEAAAAAAAAAAAAAAwIEAQUGBwgJCgAL/8QAXRAAAQIEBAQDBQUFBQQECQgLAQIDBAUGEQAHITEIEkFRCRNhFCJxgZEVobHB8AoyQtHhFhcjUvEYJDNiJidDchklKDQ1RYKSojZEU2Rnc3eyGkhWY2Z2hKfC0uL/xAAeAQABBAMBAQEAAAAAAAAAAAADAQIEBQAGBwgJCv/EAFkRAAEDAgQDBgMGBQIDBAYBFQECAxEEIQAFEjEGQVEHEyJhcYGRofAIFDKxwdEVI0Lh8SRSFjNiFyVDkhgmNERTcoKiNUUnNkdkZVRVVmZzdHWUo7LS4vL/2gAMAwEAAhEDEQA/AOMHkJA6aj6d9/uxyfH0XSSZkc4tz/P6tywoNqvsSO4H+vXCSOo+OHgXgyPlFp54N5agBYdBYddtN/64GoJ3B57SPPpg6EE2Hrym5jl6HfpvgqWvTW+gUbEka6DrrhmJyGFK0gagPCCSLDaeQ5evK3ImDKj321sPj37W10sBvbA1uBPMRG5PP65YlJonY8MkT0m/+B8+pGHKIUgX5ba9AdTYX1sT17g2164CXEEnxASeZ8/fE5igdHi8JEe29iYB5esYWqHV/Ck21137bi9x9NcQ3XSSARa8RzjnzmfgPbFkzlpgqCSSoCwBEECTtcjmfjY4ntLwanJ/Kk8uhjGiQdAfeAH3nqe3xFRmr5Tl9VcJhlcGdrc+m3IDaDi4y3KVrqmf5R0hxBmCDc8ied72vcHG33xFqObl/CN4b82YZSHZ3Q+cqohSU2KlQFYSRlN7amwcOmpA+Nz5p7DQ5S8ddr7zxOivzDJahsFRNw1XsKPQWbG1jBGJzVA5mGbZ5TtIBXQV1KhSeaA7SoWLbn8MzBuZ6TqFh5O8tSRYg2/h1NrXIFwTcncdL6Y9LmtbSRfkfX5Rv7Y2FjhKpeMFJEm48vOeZMb3HnidtSJzQhs7fwgDsLX5b7dx02O+I7maBPh1jlEm/SLRJk9bAzIEzsVJwU+QR3Z', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 11:18:06', 1158); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2241, 2, '学生信息', 5, 'com.study.system.controller.BaseStudentController.export()', 'POST', 1, '13388880001', NULL, '/student/export', '127.0.0.1', '', '{\"schId\":\"2\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"joinTime\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2026-01-19 11:43:15', 867); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2242, 2, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, '13388880001', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"2\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 15329928811 导入成功\",\"code\":200}', 0, NULL, '2026-01-19 11:46:05', 414); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2243, 2, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, 'admin', NULL, '/todo/44', '127.0.0.1', '', '[44]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 11:49:31', 92); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2244, 2, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, '13388880001', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"2\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 15329928812 导入成功\",\"code\":200}', 0, NULL, '2026-01-19 11:51:04', 233); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2245, 2, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, 'admin', NULL, '/todo/45', '127.0.0.1', '', '[45]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 11:53:19', 54); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2246, 2, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, 'admin', NULL, '/todo/45', '127.0.0.1', '', '[45]', '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2026-01-19 11:53:26', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2247, 2, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, 'admin', NULL, '/todo/46', '127.0.0.1', '', '[46]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 11:53:58', 55); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2248, 2, '待办', 3, 'com.study.system.controller.BaseTodoController.remove()', 'DELETE', 1, 'admin', NULL, '/todo/47', '127.0.0.1', '', '[47]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 11:54:11', 56); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2249, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"三桥\",\"avatar\":\"/statics/2025/11/07/file_20251107113603A001.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCADIAMgDAREAAhEBAxEB/8QAHgAAAgIDAQEBAQAAAAAAAAAABQYEBwMICQIBCgD/xAA6EAACAgEDAwQCAgAFAgUEAwEBAgMEEQUSIQYTMQAHIkEIFDJRCRUjQmEkcRZDUoGhFzNikSU0crH/xAAdAQACAgIDAQAAAAAAAAAAAAAEBQMGAgcAAQgJ/8QAPREBAAIBAwMDAgQDBwMEAgMBAQIRAxIhMQAEQQUiURNhBjJxgUKRoQcIFCOxwfBS0eEVM2LxCXIWJIIX/9oADAMBAAIRAxEAPwCFW6RBK5jAYttwQSCRzgADB8cDOT8jkbfWz3Miw0lFb+abr9658deCzeZGIi2vm9O9ct+aHZXfpn07pKJSm+LwSQXQKSEOQDtbIyBgKMHdj5LxiHJKNFXRyK/tW/J+23ROChT6aSk3TpjVeea3/U/S+nTTeml7gaOBMk5XAJC5x4/kdqkDd4A4weSALlntuyQtiWtVuefC/wDKOmcQ0sqpkIb3T5tH5pK/bndrr9PtGdxZVG3JAGDgj5fyzwctzuXBx/fAOSQuqTsbitU7fz4256nxVcY+ZAS+78/z328dHq2gLtwsfcz4BzlQf5BzgeRg8LjdkEDj0OzblIdnfb53t/f/AIHRkIg/TS0lKqtPzBXy+PG/6vReDptVbesaqDiM4QvnPAZ92AD/AFgZI3DBPHrH6pLbVuCseGj+j9t+iIY9MmV1caY1RdlKIJR587eN0zB06gYbhklhjBUspyAjZAADAsuA3J5OecmKWeSR02bIJVLsU35i7O1fFnRWKECRJCS8UtxX54P9eOjMfTYwMQEZKhSyMzKVGSeT5BwGJAwAdwxgqPr3feP/AFPiL8NnO3gemWI1H2Gn533/APvo5X6e2lCqqGCsBwOfiSuRn+PnJVx5BGcD0Plyw1ozPyhL4438fv8ANPw9McGGV0xWOmf34r3U7O7H5/MWG9N1HQFZfmPO5cEFRlW+YQ7yw5yFO7OG5Hj0ry5RXSAF78qb1y1X/N/LrHGWSDKcVytfO3GwK', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 13:15:53', 763); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2250, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '127.0.0.1', '', '{\"address\":\"三桥\",\"avatar\":\"/statics/2026/01/19/file_20260119131728A001.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCADIAMgDAREAAhEBAxEB/8QAHgAAAgIDAQEBAQAAAAAAAAAABQYEBwMICQIBCgD/xAA6EAACAgEDAwQCAgAFAgUEAwEBAgMEEQUSIQYTMQAHIkEIFDJRCRUjQmEkcRZDUoGhFzNikSU0crH/xAAdAQACAgIDAQAAAAAAAAAAAAAEBQMGAgcAAQgJ/8QAPREBAAIBAwMDAgQDBwMEAgMBAQIRAxIhMQAEQQUiURNhBjJxgUKRoQcIFCOxwfBS0eEVM2LxCXIWJIIX/9oADAMBAAIRAxEAPwCFW6RBK5jAYttwQSCRzgADB8cDOT8jkbfWz3Miw0lFb+abr9658deCzeZGIi2vm9O9ct+aHZXfpn07pKJSm+LwSQXQKSEOQDtbIyBgKMHdj5LxiHJKNFXRyK/tW/J+23ROChT6aSk3TpjVeea3/U/S+nTTeml7gaOBMk5XAJC5x4/kdqkDd4A4weSALlntuyQtiWtVuefC/wDKOmcQ0sqpkIb3T5tH5pK/bndrr9PtGdxZVG3JAGDgj5fyzwctzuXBx/fAOSQuqTsbitU7fz4256nxVcY+ZAS+78/z328dHq2gLtwsfcz4BzlQf5BzgeRg8LjdkEDj0OzblIdnfb53t/f/AIHRkIg/TS0lKqtPzBXy+PG/6vReDptVbesaqDiM4QvnPAZ92AD/AFgZI3DBPHrH6pLbVuCseGj+j9t+iIY9MmV1caY1RdlKIJR587eN0zB06gYbhklhjBUspyAjZAADAsuA3J5OecmKWeSR02bIJVLsU35i7O1fFnRWKECRJCS8UtxX54P9eOjMfTYwMQEZKhSyMzKVGSeT5BwGJAwAdwxgqPr3feP/AFPiL8NnO3gemWI1H2Gn533/APvo5X6e2lCqqGCsBwOfiSuRn+PnJVx5BGcD0Plyw1ozPyhL4438fv8ANPw9McGGV0xWOmf34r3U7O7H5/MWG9N1HQFZfmPO5cEFRlW+YQ7yw5yFO7OG5Hj0ry5RXSAF78qb1y1X/N/LrHGWSDKcVytfO3GwK', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 13:17:29', 2267); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2251, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '222.90.239.112', '', '{\"address\":\"三桥\",\"avatar\":\"/statics/2026/01/19/file_20260119132426A007.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCACnAKcDAREAAhEBAxEB/8QAHgAAAgIDAQEBAQAAAAAAAAAABQYEBwMICQIBCgD/xAA5EAACAgEEAAUDAwQBAwIHAQABAgMEEQUGEiEABxMiMQgUQRUyUQkjQmGBFhckUmIYMzRDcZKh8f/EAB0BAAICAwEBAQAAAAAAAAAAAAQFAwYBAgcICQD/xAA9EQEAAgEDAwMDAgQEBAUFAQEBAhEDBBIhADFBBSJRBhNhMnEHQoGhCBQjkVKxwfAJFXLR4RYkM2LxF0P/2gAMAwEAAhEDEQA/AMtTZKDjyiIyG7wArFcAYY+1fnKgg5z0CQx8dPlmlzGo7Tjgp8Jz+Ozx4evBcSStRri6X2yXh8eDm6RoOOnDTtowKpHoK0jcUDcSSSMEsMFMMp6PWSCSxBOANkyU2XFopvk+aQHmvHz56YadCoOyPaO1fdS9w20xHg5O3bs9PtLa3CNVKLEPgFUyckrnoMGJIP4wRgn28j4X5Mm6w7SC0bvnz88dHCEue0TbxzyPD8Hx+PloOmeptpSQQjsQFUFwyq3Xt7YjDfwPcGI+RnoOcjiriRse5ffjxxfP5fF9HwilNXuATnj3cyXzwj+K4ej0G105K4iXl8clH7uROclmdXHfJQQWAwWOPiP7nKLLzXka7W9i6/PjouOMiki7RPFJZ8LfPZaX446PVdrIGUmMsWOc+5fgn8kDrrg3EFTyClg2fEE80pFLsjVNNIDyJxbxR2Ertb0bhgRbILKR32oitp5u39rvt0frbVAZW9JRhRyZcHIdj0SMnIPRI4gfDEOQGHcsYis2kkRXv+l7i2P45454vppixs2JySew/wB7+ULeQ5rt00adtrvARioOOuQI6diSMH5yAqnvJVgQBx8Lc+eJGN8L23lFJxXzy38ceTp3pcbEOzB2s6b3e9IWVxdqlvKc8AvdHbMZTPp4PJWB9PJIABwBlesgLjgQAcgkFvCnNkkyfdxtHhoaF/pb07wQIXLbFlJkB3AsQY9u3YryfAdNFDbUZZOSe3JOOPEBgSSDgkjGQ', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 13:24:26', 406); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2252, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.edit()', 'PUT', 1, 'admin', NULL, '/student', '222.90.239.112', '', '{\"address\":\"三桥\",\"avatar\":\"/statics/2026/01/19/file_20260119132516A008.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCACnAKcDAREAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAABgQFBwgJAwoCAAsB/8QAPRAAAQQCAQIFAwIEBAQFBQAAAQIDBAUGEQcSIQAIEzFBFBUiCVEWMmFxI0KBoRdSkbEKGCTB8BklU2LR/8QAHAEAAQUBAQEAAAAAAAAAAAAAAwECBAUGBwAI/8QAPREAAgIBAwMDAwMCBAQGAwADAQIDEQQFEiEAMUEGE1EUImEycYEVIwdCkaEzUrHBFiRy0eHwQ2LxF4LC/9oADAMBAAIRAxEAPwDz/cv+VfNMr4pieeLhGMzecY5G6qy5JrqGW3954mz5+WxEyavsqNxEexiY5KyWVMZo3Ut2LH0SmA/NdjTq5yXlNK1qDDz5PTGe8kOqYLe3iiaMhc/TyrPiZMUtssznHULkqRGVlWRTH/bl2SMuH7I8siI4mWoZXDiknLBJIHU7SjiRlMYUsPbkiIYF1BiXgTnSHQQ5XGOd44/n3FGVLkOZRhD9hFanwLEtz32824xsbEITjuaVzSyhNO1IMfL3SxXBH3F6AqNcZ+FkNkQ63pOcula7gKPpctUYw5MX2bsLUY0O3KwZSoLe4C2NbSIGj9xSKGZER8XNT6nAnI3pQ9yJuwlgc8xzqCdrqyI+1Y5QV2kOHMHArmF1lNyNgdunkHhTNHXBh2eV7fUqHM0XHMQzOG3tWO5pVIIan1ctLKZSkLkwOtAdaj9Q9HeuMb1GuRpmfCuk+qNOj3ajpUjipUC0M/TZWoZWnyte10JaE0sxX7Hko9X0mfSxHlI31Wl5TH6fMQcAjk42UFP9nJQfrQ0ri2jYre2KcTyXMMDkmdjUn0ospSTaUUxpEzH8hhLS427W3Nc91MyoM9kONyWlABz0o7qiH48Z1qx1T0zi6nveFfp82J3fHmiYxMssYSpIpEAeCcFiUmS2HKuGRmXqvh1RUuOaRnhZVWTcBfyVZbqSPkMY24O77QpC9GdthlLl9NPzbjViQiHWoS/mGCPuOzL7AnV9nZbK1+pJvMJeeIEC+', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 13:25:17', 265); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2253, 1, '考试安排', 1, 'com.study.examine.controller.BaseExamPlanController.add()', 'POST', 1, 'admin', NULL, '/examPlan', '127.0.0.1', '', '{\"academicId\":13,\"baseExamPlanClassList\":[{\"classId\":9,\"deptId\":9,\"deptName\":\"思政2602班\",\"params\":{},\"planId\":133}],\"createBy\":\"1\",\"createTime\":\"2026-01-19 14:05:28\",\"examAddress\":\"sdfsdf\",\"examEndTime\":\"2026-01-19 14:45:00\",\"examInfoId\":10021,\"examStartTime\":\"2026-01-19 14:15:00\",\"examTitle\":\"sdfsdf\",\"id\":133,\"params\":{},\"schId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 14:05:30', 933); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2254, 1, '学生信息', 2, 'com.study.system.controller.BaseStudentController.editSecretKey()', 'PUT', 1, 'admin', NULL, '/student/editSecretKey/1', '127.0.0.1', '', '[1]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 14:21:29', 263); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2255, 17, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, '13488103555', NULL, '/user', '113.132.46.175', '', '{\"admin\":true,\"avatar\":\"\",\"code\":\"T99999\",\"createBy\":\"admin\",\"createTime\":\"2025-11-20 11:09:21\",\"delFlag\":\"0\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"email\":\"13488103555@qq.com\",\"joinTime\":\"2025-12-02\",\"loginDate\":\"2026-01-19 15:20:05\",\"loginIp\":\"113.132.46.175\",\"nickName\":\"龙小孟\",\"params\":{},\"phoneNumber\":\"13488103555\",\"remark\":\"学校管理员\",\"roleId\":139,\"roleIds\":[139],\"roles\":[{\"admin\":false,\"count\":0,\"dataScope\":\"1\",\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"params\":{},\"roleId\":139,\"roleKey\":\"school_manager\",\"roleName\":\"院校管理员\",\"roleSort\":0,\"status\":\"0\"}],\"schId\":17,\"schName\":\"陕西示范大学\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"13488103555\",\"userId\":123,\"userName\":\"13488103555\",\"userType\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 15:20:27', 583); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2256, 17, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, '13488103555', NULL, '/user', '113.132.46.175', '', '{\"admin\":true,\"avatar\":\"/statics/2026/01/19/file_20260119152140A009.jpeg\",\"avatarBase64\":\"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/2wBDAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAARCAGQAZADAREAAhEBAxEB/8QAHwAAAQIHAQEAAAAAAAAAAAAAAwIEAQUGBwgJCgAL/8QAXRAAAQIEBAQDBQUFBQQECQgLAQIDBAUGEQAHITEIEkFRCRNhFCJxgZEVobHB8AoyQtHhFhcjUvEYJDNiJidDchklKDQ1RYKSojZEU2Rnc3eyGkhWY2Z2hKfC0uL/xAAeAQABBAMBAQEAAAAAAAAAAAADAQIEBQAGBwgJCv/EAFkRAAEDAgQDBgMGBQIDBAYBFQECAxEEIQAFEjEGQVEHEyJhcYGRofAIFDKxwdEVI0Lh8SRSFjNiFyVDkhgmNERTcoKiNUUnNkdkZVRVVmZzdHWUo7LS4vL/2gAMAwEAAhEDEQA/AOMHkJA6aj6d9/uxyfH0XSSZkc4tz/P6tywoNqvsSO4H+vXCSOo+OHgXgyPlFp54N5agBYdBYddtN/64GoJ3B57SPPpg6EE2Hrym5jl6HfpvgqWvTW+gUbEka6DrrhmJyGFK0gagPCCSLDaeQ5evK3ImDKj321sPj37W10sBvbA1uBPMRG5PP65YlJonY8MkT0m/+B8+pGHKIUgX5ba9AdTYX1sT17g2164CXEEnxASeZ8/fE5igdHi8JEe29iYB5esYWqHV/Ck21137bi9x9NcQ3XSSARa8RzjnzmfgPbFkzlpgqCSSoCwBEECTtcjmfjY4ntLwanJ/Kk8uhjGiQdAfeAH3nqe3xFRmr5Tl9VcJhlcGdrc+m3IDaDi4y3KVrqmf5R0hxBmCDc8ied72vcHG33xFqObl/CN4b82YZSHZ3Q+cqohSU2KlQFYSRlN7amwcOmpA+Nz5p7DQ5S8ddr7zxOivzDJahsFRNw1XsKPQWbG1jBGJzVA5mGbZ5TtIBXQV1KhSeaA7SoWLbn8MzBuZ6TqFh5O8tSRYg2/h1NrXIFwTcncdL6Y9LmtbSRfkfX5Rv7Y2FjhKpeMFJEm48vOeZMb3HnidtSJzQhs7fwgDsLX5b7dx02O+I7maBPh1jlEm/SLRJk9bAzIEzsVJwU+QR3Z', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 15:21:40', 576); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2257, 17, '学生信息', 5, 'com.study.system.controller.BaseStudentController.export()', 'POST', 1, '13488103555', NULL, '/student/export', '113.132.46.175', '', '{\"schId\":\"17\",\"deptAncestors\":\"25\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"joinTime\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2026-01-19 15:23:02', 451); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2258, 17, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, '13488103555', NULL, '/student/importData', '113.132.46.175', '', '{\"schId\":\"17\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 13889898000 导入成功\",\"code\":200}', 0, NULL, '2026-01-19 15:24:13', 379); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2259, 17, '学年学期设置', 2, 'com.study.setting.controller.BaseAcademicController.edit()', 'PUT', 1, '13488103555', NULL, '/academic', '113.132.46.175', '', '{\"childCount\":0,\"id\":35,\"isCurrent\":1,\"isSemester\":1,\"params\":{},\"schoolId\":17,\"updateTime\":\"2026-01-19 15:25:26\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 15:25:26', 122); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2260, 17, '学生信息', 3, 'com.study.system.controller.BaseStudentController.remove()', 'DELETE', 1, '13488103555', NULL, '/student/26', '127.0.0.1', '', '[26]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 16:13:20', 101); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2261, 17, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, '13488103555', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"17\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 13889898000 更新成功\",\"code\":200}', 0, NULL, '2026-01-19 16:19:34', 752); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2262, 17, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, '13488103555', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"17\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 13889898000 导入成功\",\"code\":200}', 0, NULL, '2026-01-19 16:20:37', 232); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2263, 17, '学生信息', 3, 'com.study.system.controller.BaseStudentController.remove()', 'DELETE', 1, '13488103555', NULL, '/student/27', '127.0.0.1', '', '[27]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 16:20:41', 64); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2264, 17, '教师管理', 2, 'com.study.system.controller.SysUserController.edit()', 'PUT', 1, '13488103555', NULL, '/user', '127.0.0.1', '', '{\"admin\":true,\"avatar\":\"/statics/2026/01/19/file_20260119152140A009.jpeg\",\"code\":\"T99999\",\"createBy\":\"admin\",\"createTime\":\"2025-11-20 11:09:21\",\"delFlag\":\"0\",\"deptClassInfoList\":[],\"deptCode\":\"-\",\"email\":\"13488103555@qq.com\",\"joinTime\":\"2025-12-02\",\"loginDate\":\"2026-01-19 16:32:06\",\"loginIp\":\"127.0.0.1\",\"nickName\":\"龙小孟\",\"params\":{},\"phoneNumber\":\"13488103555\",\"remark\":\"学校管理员\",\"roleIds\":[],\"roles\":[],\"schId\":17,\"schName\":\"陕西示范大学\",\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"13488103555\",\"userId\":123,\"userName\":\"13488103555\",\"userType\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 16:32:41', 945); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2265, 17, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, '13488103555', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"17\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 13889898000 恢复成功\",\"code\":200}', 0, NULL, '2026-01-19 16:43:01', 1799); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2266, 17, '学生信息', 3, 'com.study.system.controller.BaseStudentController.remove()', 'DELETE', 1, '13488103555', NULL, '/student/27', '127.0.0.1', '', '[27]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 16:45:28', 68); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2267, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '127.0.0.1', '', '{\"apps\":\"1,2,3,4,5,6,8\",\"createBy\":\"admin\",\"createTime\":\"2026-01-19 16:56:47\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2026/01/19/3_20260119165626A001.png\",\"mail\":\"lj7788@126.com\",\"manager\":\"haha\",\"mgrGender\":\"0\",\"mgrPhone\":\"13384994320\",\"params\":{},\"schoolId\":23,\"schoolName\":\"haha学院\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2026-01-19 16:56:47\",\"userId\":149}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 16:56:48', 1202); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2268, 1, '学校信息', 1, 'com.study.setting.controller.BaseSchoolController.add()', 'POST', 1, 'admin', NULL, '/school', '113.132.46.175', '', '{\"apps\":\"1,8\",\"createBy\":\"admin\",\"createTime\":\"2026-01-19 16:58:26\",\"isDel\":0,\"isSystemSchool\":\"0\",\"logoPath\":\"/statics/2026/01/19/3_20260119165815A010.png\",\"mail\":\"lj7788@126.com\",\"manager\":\"haha2\",\"mgrGender\":\"0\",\"mgrPhone\":\"13384994321\",\"params\":{},\"schoolId\":24,\"schoolName\":\"haha学院2\",\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2026-01-19 16:58:26\",\"userId\":150}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 16:58:26', 609); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2269, 17, '学生信息', 5, 'com.study.system.controller.BaseStudentController.export()', 'POST', 1, '13488103555', NULL, '/student/export', '113.132.46.175', '', '{\"schId\":\"17\",\"pageSize\":\"10\",\"isAsc\":\"desc\",\"orderByColumn\":\"joinTime\",\"pageNum\":\"1\"}', NULL, 0, NULL, '2026-01-19 17:35:02', 145); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2270, 17, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '13488103555', NULL, '/dept', '113.132.46.175', '', '{\"ancestors\":\"0,22\",\"children\":[],\"createBy\":\"13488103555\",\"deptName\":\"ccc\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"c001\",\"orgDesc\":\"\",\"orgLevel\":2,\"params\":{},\"parentId\":22,\"schId\":17,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 17:36:54', 161); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2271, 17, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '13488103555', NULL, '/dept', '113.132.46.175', '', '{\"ancestors\":\"0,22,34\",\"children\":[],\"createBy\":\"13488103555\",\"deptName\":\"Test2026\",\"endYear\":\"\",\"enterYear\":\"2026\",\"orderNum\":0,\"orgCode\":\"C202601\",\"orgDesc\":\"\",\"orgLevel\":3,\"params\":{},\"parentId\":34,\"schId\":17,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 17:37:15', 158); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2272, 17, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '13488103555', NULL, '/dept', '113.132.46.175', '', '{\"academicId\":34,\"children\":[],\"deptName\":\"C202601\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"C202601\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":35,\"schId\":17,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"新增部门\'C202601\'失败,部门编号在当前学校中已存在\",\"code\":500}', 0, NULL, '2026-01-19 17:37:34', 51); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2273, 17, '部门管理', 1, 'com.study.system.controller.SysDeptController.add()', 'POST', 1, '13488103555', NULL, '/dept', '113.132.46.175', '', '{\"academicId\":34,\"ancestors\":\"0,22,34,35\",\"children\":[],\"createBy\":\"13488103555\",\"deptName\":\"C202601\",\"endYear\":\"\",\"enterYear\":\"\",\"orderNum\":0,\"orgCode\":\"C202601-1\",\"orgDesc\":\"\",\"orgLevel\":4,\"params\":{},\"parentId\":35,\"schId\":17,\"startYear\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2026-01-19 17:37:44', 130); INSERT INTO `sys_oper_log` (`oper_id`, `sch_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (2274, 17, '学生信息', 6, 'com.study.system.controller.BaseStudentController.importData()', 'POST', 1, '13488103555', NULL, '/student/importData', '127.0.0.1', '', '{\"schId\":\"17\"}', '{\"msg\":\"恭喜您,数据已全部导入成功!共 1 条,数据如下:
1、账号 13889898900 导入成功\",\"code\":200}', 0, NULL, '2026-01-19 17:40:57', 944); COMMIT; -- ---------------------------- -- 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) NOT NULL COMMENT '岗位编码', `post_name` varchar(50) NOT NULL COMMENT '岗位名称', `post_sort` int NOT NULL COMMENT '显示顺序', `status` char(1) NOT NULL COMMENT '状态(0正常 1停用)', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`post_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='岗位信息表'; -- ---------------------------- -- Records of sys_post -- ---------------------------- BEGIN; INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 'ceo', '董事长', 1, '0', 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 'se', '项目经理', 2, '0', 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 'hr', '人力资源', 3, '0', 'admin', '2025-10-21 09:30:43', '', NULL, ''); INSERT INTO `sys_post` (`post_id`, `post_code`, `post_name`, `post_sort`, `status`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 'user', '普通员工', 4, '0', 'admin', '2025-10-21 09:30:43', '', NULL, ''); COMMIT; -- ---------------------------- -- Table structure for sys_role -- ---------------------------- DROP TABLE IF EXISTS `sys_role`; CREATE TABLE `sys_role` ( `role_id` bigint NOT NULL AUTO_INCREMENT COMMENT '角色ID', `school_id` bigint DEFAULT NULL COMMENT '学校ID', `role_name` varchar(30) NOT NULL COMMENT '角色名称', `role_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '角色权限字符串', `role_sort` int DEFAULT '0' COMMENT '显示顺序', `is_sys` int DEFAULT '0' COMMENT '是否为系统角色', `role_type` int DEFAULT '0' COMMENT '角色类型0-管理员 1-老师 2-学生', `data_scope` char(1) DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)', `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示', `dept_check_strictly` tinyint(1) DEFAULT '1' COMMENT '部门树选择项是否关联显示', `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '0' COMMENT '角色状态(0正常 1停用)', `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`role_id`) ) ENGINE=InnoDB AUTO_INCREMENT=190 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='角色信息表'; -- ---------------------------- -- Records of sys_role -- ---------------------------- BEGIN; INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, 1, '超级管理员', 'admin', 0, 1, 0, '1', 1, 1, '0', '0', 'admin', '2025-10-21 09:30:41', '', NULL, '超级管理员'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, 1, '教师', 'common', 2, 1, 1, '2', 1, 1, '0', '0', 'admin', '2025-10-21 09:30:43', 'admin', '2025-12-22 16:31:44', '普通角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, 1, '院校管理员', 'school_manager', 1, 1, 0, '1', 0, 0, '0', '0', 'admin', '2025-10-21 09:30:42', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (100, 2, '系统老师', 'sys_teacher', 0, 1, 1, '1', 1, 1, '0', '0', 'admin', '2025-10-27 14:59:01', 'admin', '2025-11-13 09:19:14', NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (101, 2, '管理员', 'manager', 0, 1, 0, '1', 1, 1, '0', '0', 'admin', '2025-10-27 14:59:25', 'admin', '2025-10-28 11:03:24', NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (102, 2, '老师', 'teacher', 0, 1, 1, '1', 1, 1, '0', '0', 'admin', '2025-10-27 14:59:54', 'admin', '2025-11-13 09:19:24', NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, 1, '123a', '123a', 4, 0, 1, '1', 1, 1, '0', '2', 'admin', '2025-10-30 14:26:32', 'admin', '2025-12-11 11:35:13', NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (110, 1, 'vvv', 'vvv', 5, 0, 1, '1', 1, 1, '0', '2', 'admin', '2025-10-30 14:27:54', 'admin', '2025-12-05 15:21:22', NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (112, 2, '111', '111', 0, 0, 1, '1', 1, 1, '0', '0', 'admin', '2025-10-30 15:06:55', 'admin', '2025-11-13 09:19:39', NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (116, 10, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '2', 'admin', '2025-11-01 11:41:19', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (117, 10, '教师', 'teacher', 0, 1, 1, '1', 0, 0, '0', '2', 'admin', '2025-11-01 11:41:19', '', NULL, '教师角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (119, 10, 'ccc', 'ccc', 0, 0, 1, '1', 0, 0, '1', '2', '张三丰', '2025-11-01 11:59:19', '', NULL, NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (120, 11, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '0', 'admin', '2025-11-01 15:37:49', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (121, 11, '教师', 'teacher', 0, 1, 1, '1', 0, 0, '0', '0', 'admin', '2025-11-01 15:37:49', '', NULL, '教师角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (123, 12, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '0', 'admin', '2025-11-01 22:07:36', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (124, 12, '教师', 'teacher', 0, 1, 1, '1', 0, 0, '0', '0', 'admin', '2025-11-01 22:07:36', '', NULL, '教师角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (126, 12, '测试角色', '测试角色', 0, 0, 1, '1', 0, 0, '0', '0', '杨飞虎', '2025-11-01 22:31:29', '', NULL, NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (127, 13, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '0', 'admin', '2025-11-02 14:00:28', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (128, 13, '教师', 'teacher', 0, 1, 1, '1', 0, 0, '0', '0', 'admin', '2025-11-02 14:00:28', '', NULL, '教师角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (130, 14, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '2', 'admin', '2025-11-15 11:15:55', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (131, 14, '教师', 'teacher', 0, 1, 1, '1', 0, 0, '0', '2', 'admin', '2025-11-15 11:15:55', '', NULL, '教师角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (133, 15, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '2', 'admin', '2025-11-15 11:35:50', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (134, 15, '教师', 'teacher', 0, 1, 1, '1', 0, 0, '0', '2', 'admin', '2025-11-15 11:35:50', '', NULL, '教师角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (136, 16, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '2', 'admin', '2025-11-15 12:00:26', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (137, 16, '教师', 'teacher', 0, 1, 1, '1', 0, 0, '0', '2', 'admin', '2025-11-15 12:00:26', '', NULL, '教师角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (139, 17, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '0', 'admin', '2025-11-20 11:09:21', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (140, 17, '教师', 'teacher', 0, 1, 1, '1', 1, 1, '0', '0', 'admin', '2025-11-20 11:09:21', '13488103555', '2025-12-16 17:48:00', '教师角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (178, 21, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '0', 'admin', '2025-11-27 18:02:30', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (179, 21, '教师', 'common', 2, 1, 1, '2', 1, 1, '0', '0', '', '2025-11-27 18:02:30', '15202903075', '2025-11-27 18:03:32', '普通角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (180, 21, '123a', '123a', 4, 0, 1, '1', 1, 1, '0', '0', '', '2025-11-27 18:02:30', '', NULL, NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (181, 21, 'vvv', 'vvv', 5, 0, 1, '1', 1, 1, '0', '0', '', '2025-11-27 18:02:30', '', NULL, NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (182, 1, '1215测试角色', '1215测试角色', 0, 0, 1, '1', 0, 0, '0', '2', 'admin', '2025-12-15 14:30:10', '', NULL, NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (183, 17, '我添加的角色1', '我添加的角色1', 0, 0, 1, '1', 0, 0, '0', '0', '13488103555', '2025-12-16 18:02:05', '', NULL, NULL); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (184, 22, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '0', 'admin', '2026-01-16 15:31:13', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (185, 22, '教师', 'common', 2, 1, 1, '2', 1, 1, '0', '0', '', '2026-01-16 15:31:14', '', NULL, '普通角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (186, 23, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '0', 'admin', '2026-01-19 16:56:48', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (187, 23, '教师', 'common', 2, 1, 1, '2', 1, 1, '0', '0', '', '2026-01-19 16:56:48', '', NULL, '普通角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (188, 24, '院校管理员', 'school_manager', 0, 1, 0, '1', 0, 0, '0', '0', 'admin', '2026-01-19 16:58:26', '', NULL, '院校管理员角色'); INSERT INTO `sys_role` (`role_id`, `school_id`, `role_name`, `role_key`, `role_sort`, `is_sys`, `role_type`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (189, 24, '教师', 'common', 2, 1, 1, '2', 1, 1, '0', '0', '', '2026-01-19 16:58:26', '', NULL, '普通角色'); COMMIT; -- ---------------------------- -- Table structure for sys_role_dept -- ---------------------------- DROP TABLE IF EXISTS `sys_role_dept`; CREATE TABLE `sys_role_dept` ( `role_id` bigint NOT NULL COMMENT '角色ID', `dept_id` bigint NOT NULL COMMENT '部门ID', PRIMARY KEY (`role_id`,`dept_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='角色和部门关联表'; -- ---------------------------- -- Records of sys_role_dept -- ---------------------------- BEGIN; INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 100); INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 101); INSERT INTO `sys_role_dept` (`role_id`, `dept_id`) VALUES (2, 105); COMMIT; -- ---------------------------- -- Table structure for sys_role_menu -- ---------------------------- DROP TABLE IF EXISTS `sys_role_menu`; CREATE TABLE `sys_role_menu` ( `role_id` bigint NOT NULL COMMENT '角色ID', `menu_id` bigint NOT NULL COMMENT '菜单ID', PRIMARY KEY (`role_id`,`menu_id`), KEY `idx_sys_role_menu_role_menu` (`role_id`,`menu_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='角色和菜单关联表'; -- ---------------------------- -- Records of sys_role_menu -- ---------------------------- BEGIN; INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2186); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2187); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2188); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2189); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2190); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2191); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2192); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2193); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2194); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2195); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2196); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2197); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2198); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2200); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2201); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2202); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2203); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2204); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2205); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2206); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2207); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2208); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2209); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2210); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2211); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2215); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2216); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2217); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2219); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2220); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2222); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2223); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2224); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2226); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2227); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2228); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2229); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2230); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2231); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2232); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2233); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2234); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2235); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2236); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2237); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2238); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2239); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 2246); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (100, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (101, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (102, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (112, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2186); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2187); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2188); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2189); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2190); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2191); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2192); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2193); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2194); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2198); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2201); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2202); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2203); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2215); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2216); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2217); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2218); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2219); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2220); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (140, 2223); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (157, 2186); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (166, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (167, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (168, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (169, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (171, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (172, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (173, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (179, 2186); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (180, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2080); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2081); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2082); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2083); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2084); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2086); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2087); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2088); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2089); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2090); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (181, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2186); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2187); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2188); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2189); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2190); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2191); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2192); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2193); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2194); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2195); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2196); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2197); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2198); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2200); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2201); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2202); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2203); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2204); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2205); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2206); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2207); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2208); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2209); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2210); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2211); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2215); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2216); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2217); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2219); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2220); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2222); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2223); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2224); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2226); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2227); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2228); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2229); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2230); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2231); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2232); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2233); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2234); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2235); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2236); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2237); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2238); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2239); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (185, 2246); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2186); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2187); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2188); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2189); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2190); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2191); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2192); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2193); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2194); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2195); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2196); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2197); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2198); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2200); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2201); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2202); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2203); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2204); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2205); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2206); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2207); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2208); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2209); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2210); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2211); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2215); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2216); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2217); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2219); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2220); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2222); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2223); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2224); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2226); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2227); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2228); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2229); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2230); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2231); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2232); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2233); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2234); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2235); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2236); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2237); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2238); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2239); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (187, 2246); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 3); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 4); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 111); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 112); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 113); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 114); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 115); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 116); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 500); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 501); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1006); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1009); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1015); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1016); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1017); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1018); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1019); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1020); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1033); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1034); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1038); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1040); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 1060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2000); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2001); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2002); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2003); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2004); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2005); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2007); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2008); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2010); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2011); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2012); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2013); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2014); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2021); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2022); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2023); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2024); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2025); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2026); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2027); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2028); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2029); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2030); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2031); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2032); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2035); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2036); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2037); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2039); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2041); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2042); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2043); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2044); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2045); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2046); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2047); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2048); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2049); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2050); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2051); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2052); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2053); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2054); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2055); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2056); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2057); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2058); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2059); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2060); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2061); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2062); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2063); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2064); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2065); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2066); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2067); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2068); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2069); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2070); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2071); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2073); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2085); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2091); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2092); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2093); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2094); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2095); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2096); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2097); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2099); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2100); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2101); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2102); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2103); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2104); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2105); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2106); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2107); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2108); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2109); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2110); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2117); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2118); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2120); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2121); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2122); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2123); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2124); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2125); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2126); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2127); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2128); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2129); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2130); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2131); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2132); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2133); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2134); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2135); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2136); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2137); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2138); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2139); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2140); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2141); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2142); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2143); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2144); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2145); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2146); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2147); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2148); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2149); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2150); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2151); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2152); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2153); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2154); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2155); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2156); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2157); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2158); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2159); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2160); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2161); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2162); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2163); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2164); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2165); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2166); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2167); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2168); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2169); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2170); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2171); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2172); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2173); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2175); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2176); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2177); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2178); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2179); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2180); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2181); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2182); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2183); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2184); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2185); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2186); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2187); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2188); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2189); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2190); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2191); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2192); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2193); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2194); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2195); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2196); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2197); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2198); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2200); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2201); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2202); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2203); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2204); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2205); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2206); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2207); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2208); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2209); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2210); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2211); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2215); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2216); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2217); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2219); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2220); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2222); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2223); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2224); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2226); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2227); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2228); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2229); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2230); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2231); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2232); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2233); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2234); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2235); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2236); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2237); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2238); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2239); INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (189, 2246); COMMIT; -- ---------------------------- -- Table structure for sys_user -- ---------------------------- DROP TABLE IF EXISTS `sys_user`; CREATE TABLE `sys_user` ( `user_id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户ID', `code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '工号', `sch_id` bigint DEFAULT NULL COMMENT '学校ID', `dept_id` bigint DEFAULT NULL COMMENT '部门ID', `user_name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户账号', `nick_name` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户昵称', `user_card_id` varchar(64) DEFAULT NULL COMMENT '证件号码', `user_type` varchar(2) DEFAULT '00' COMMENT '用户类型(00系统用户)', `email` varchar(50) DEFAULT '' COMMENT '用户邮箱', `phone_number` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '手机号码', `sex` char(1) DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)', `avatar` varchar(100) DEFAULT '' COMMENT '头像地址', `password` varchar(100) DEFAULT '' COMMENT '密码', `status` char(1) DEFAULT '0' COMMENT '账号状态(0正常 1停用)', `del_flag` char(1) DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', `join_time` datetime DEFAULT NULL COMMENT '加入时间', `login_ip` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '登录地址', `login_date` datetime DEFAULT NULL COMMENT '最后登录时间', `pwd_update_date` datetime DEFAULT NULL COMMENT '密码最后更新时间', `create_by` varchar(64) DEFAULT '' COMMENT '创建者', `create_time` datetime DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) DEFAULT '' COMMENT '更新者', `update_time` datetime DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`user_id`), KEY `index_schId` (`sch_id`), KEY `index_deptId` (`dept_id`), KEY `index_phonenumber` (`phone_number`) ) ENGINE=InnoDB AUTO_INCREMENT=151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户信息表'; -- ---------------------------- -- Records of sys_user -- ---------------------------- BEGIN; INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, NULL, 1, 103, 'admin', '超级管理员', NULL, '00', 'ry@163.com', 'admin', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '2025-12-02 17:23:25', '113.132.46.175', '2026-01-19 17:24:26', '2025-10-21 09:30:43', 'admin', '2025-10-21 09:30:43', '', '2025-12-16 17:56:11', '管理员'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '1212', 1, 1, '15666666666', '张大锤', NULL, '22', 'ry@qq.com', '15666666666', '1', '/statics/2025/12/15/file_20251215104841A001.jpeg', '$2a$10$vOww0iOAmsI5MHiPnvdO8eOqG4EPjlqN9M.5HQhdumt4R0dxAlZ7m', '0', '0', '2025-12-02 00:00:00', '113.200.47.162', '2026-01-19 16:18:05', '2025-10-21 09:30:43', 'admin', '2025-10-21 09:30:43', 'admin', '2026-01-16 18:07:43', '测试员'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (100, 'T00091', 2, 14, '13388880001', '石大鹏', NULL, '11', 'mgr1@xx.com', '13388880001', '1', '/statics/2026/01/19/file_20260119111806A001.jpeg', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '2025-12-02 00:00:00', '127.0.0.1', '2026-01-19 11:56:21', NULL, '', NULL, '13388880001', '2026-01-19 11:18:06', '管理员'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (101, NULL, 2, NULL, '13388880002', '测试老师', NULL, '22', 't001@xx.com', '13388880002', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '2025-12-02 17:23:25', '113.132.46.175', '2026-01-19 17:34:38', NULL, '', NULL, 'admin', '2025-10-27 15:00:50', '老师'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (108, NULL, 12, NULL, '15202903073', '杨飞虎', NULL, '11', '', '15202903073', '0', '', '$2a$10$wsY1QyUmGKvoudqeTdX1rOmjnaO.W32uxhvaOlRP1weU3/lUyNc6S', '0', '0', '2025-12-02 17:23:25', '113.200.47.162', '2026-01-19 16:19:13', NULL, 'admin', '2025-11-01 22:07:36', '', NULL, '学校管理员'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, NULL, 13, NULL, '13433333333', '天龙真人', NULL, '11', '', '13433333333', '0', '', '$2a$10$bItLwrM2NjXeg3i1etT7KuHEat6BaKlKgbr1.oq0C4x5ypt2QYHjS', '0', '0', '2025-12-02 17:23:25', '0:0:0:0:0:0:0:1%0', '2025-11-03 18:13:38', NULL, 'admin', '2025-11-02 14:00:28', '', NULL, '学校管理员'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (110, '20131', 1, 1, '18111111111', '姜大1', NULL, '22', '67663339@.com', '18111111111', '0', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '2', '2025-11-09 00:00:00', '127.0.0.1', '2025-12-11 11:34:11', NULL, 'admin', '2025-11-08 10:12:37', 'admin', '2025-12-10 14:28:51', '111'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (111, '2023124', 1, 1, '18111213123', '姜姜尔尔', NULL, '22', '987@qq.com', '18111213123', '1', '', '$2a$10$bAsHMOI.F1M2VxeJRZzULOmHc7yniFTADvb3uZlqJTUau6ANqRufu', '1', '2', '2025-01-22 00:00:00', '', NULL, NULL, 'admin', '2025-11-08 11:31:30', 'admin', '2025-11-23 21:44:47', '665'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (112, '2022112', 1, 1, '18189138537', '江大', NULL, '22', '987@qq.com', '18189138537', '0', '', '$2a$10$nPsh9KfQ/AtDfPD6UC7ZEeGKNxLwndc6W3hhmRNIkq6xY4arvyRxa', '1', '0', '2025-01-21 00:00:00', '', NULL, NULL, 'admin', '2025-11-08 12:56:23', '', NULL, '665'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (113, 'T009', 1, 1, '13388990022', 'haha123', NULL, '22', '', '13388990022', '0', '', '$2a$10$EZMH7gKdN/c/0YhuIMxSWuoD24HeAOZAt506qroKXw7KWogrGKSqW', '0', '2', '2025-11-06 00:00:00', '', NULL, NULL, 'admin', '2025-11-13 17:39:42', '', NULL, NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (114, 'T9999', 1, 1, '13388990033', 'haha555', NULL, '22', '', '13388990033', '0', '', '$2a$10$KLPbDreBMQYIIrOiaj104.DJdymc0x1.IIit23DiH4vi0DKfPAvDK', '0', '2', '2025-11-12 00:00:00', '', NULL, NULL, 'admin', '2025-11-13 17:49:19', '', NULL, NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (115, 'T0066', 1, 1, '13388990044', 'haha66', NULL, '22', '', '13388990044', '0', '', '$2a$10$aeBbUQx7ZdGP1GqxVDUWfeCrWQbs2y3lzVmzAwcdrSRns7LZUBwj2', '0', '0', '2025-11-12 00:00:00', '127.0.0.1', '2025-12-18 10:37:36', NULL, 'admin', '2025-11-13 17:51:09', 'admin', '2026-01-16 16:28:14', NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (116, 'T00777', 1, 1, '13388990055', 'haha77', NULL, '22', '', '13388990055', '0', '', '$2a$10$1VGxvgACqSfEEQDYJKIC2uphDANMCstXfRjMVTe3NrTu4jKR5CJNy', '0', '0', '2025-11-04 00:00:00', '127.0.0.1', '2025-12-17 16:55:20', NULL, 'admin', '2025-11-13 17:52:30', '', '2025-12-17 16:12:37', NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (117, 'T0888', 1, 1, '13388990088', 'haha88', NULL, '22', '', '13388990088', '0', '', '$2a$10$/HEndxhq6lmtCtk2EZG9DeaSSeTYM1OfUyAb1gLMEOISj3nOzxOea', '0', '2', '2025-11-04 00:00:00', '', NULL, NULL, 'admin', '2025-11-13 17:56:38', 'admin', '2025-11-28 15:13:04', NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (118, '1234567', 2, 14, '13466666666', '崔方玉', NULL, '22', '', '13466666666', '0', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '2025-12-02 17:23:25', '0:0:0:0:0:0:0:1%0', '2025-12-18 10:07:47', NULL, 'admin', '2025-11-14 15:24:15', '', NULL, NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (119, 'T00999', 1, 1, '13388990099', 'haha99', NULL, '22', '', '13388990099', '0', '', '$2a$10$5sWgHX50Dk3bqSJzT/nED.0RM3TbxQGnt5b0.dllHVahPyLfrnHKi', '0', '2', '2025-12-02 17:23:25', '', NULL, NULL, 'admin', '2025-11-14 16:21:43', 'admin', '2025-11-21 15:15:48', NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (123, 'T99999', 17, NULL, '13488103555', '龙小孟', NULL, '11', '13488103555@qq.com', '13488103555', '0', '/statics/2026/01/19/file_20260119152140A009.jpeg', '$2a$10$oMfqJuU26HO2bhGrMSVKWuYsfMG/tvFUH8Fb9bUxqr/D3YxPwPZUC', '0', '0', '2025-12-02 00:00:00', '127.0.0.1', '2026-01-19 17:40:45', NULL, 'admin', '2025-11-20 11:09:21', '13488103555', '2026-01-19 16:32:41', '学校管理员'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (124, '121212', 1, 1, '13355555555', '赵大宝', NULL, '22', '', '13355555555', '0', '', '$2a$10$Fwvmx7ZqfFwdy2.sDtMJF.DgFcwVq0tGFE3AWqz5KntxnA1OfJc96', '0', '2', '2025-12-02 17:23:25', '', NULL, NULL, 'admin', '2025-11-20 11:45:49', 'admin', '2025-11-21 15:15:37', NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (125, '121212', 1, 1, '13155555555', ' 赵大宝', NULL, '22', '12121212@qq.com', '13155555555', '0', '', '$2a$10$0W6UAzbysOTYNA462jLZ/.3y0cCuuR387tb1zpZPe2Zph/RwEAXeS', '0', '0', '2025-11-10 00:00:00', '', NULL, NULL, 'admin', '2025-11-20 12:03:07', 'admin', '2025-11-21 15:16:40', NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (126, 'ct0001', 17, 22, '13455543334', '王大锤', NULL, '22', '13455543334@qq.com', '13455543334', '0', '', '$2a$10$9gIKagGEQUzPS5LMJCAgYOD6aLMSTTimVIwu6QfjhMeL9vwQF58Qu', '0', '0', '2025-11-01 00:00:00', '127.0.0.1', '2025-12-18 10:30:16', '2025-11-21 14:35:03', '13488103555', '2025-11-20 12:11:15', '13488103555', '2025-12-16 18:04:32', 'erwrewer色的方式发发'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (127, 'p0003', 17, 22, '13566776677', '王二娃', NULL, '22', '13566776677@qq.com', '13566776677', '0', '/statics/2025/11/20/file_20251120121851A004.jpeg', '$2a$10$95qS9fPtHbKqV7BGIbHa1Op4X4QgWLeaH53kgqo5eP4v1nf3HHPUC', '0', '0', '2025-11-01 00:00:00', '127.0.0.1', '2025-12-18 10:27:30', NULL, '13488103555', '2025-11-20 12:17:50', 'admin', '2025-12-01 17:04:56', '的撒旦'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (128, '10521651', 1, 1, '15202903074', '杨飞虎', NULL, '11', '1122@qq.com', '15202903074', '0', '', '$2a$10$1j71jWevAcrLystNfOBanuUXEiSbQU90QpJmb7mrCXu2wo6eOceV.', '0', '0', '2025-11-27 00:00:00', '127.0.0.1', '2026-01-16 15:44:04', NULL, 'admin', '2025-11-27 12:58:00', 'admin', '2026-01-04 10:52:06', '1122'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (131, 'js00034', 17, 22, '13444343434', '李敢', NULL, '22', '13444343434@qq.com', '13444343434', '0', '/statics/2025/11/27/file_20251127151653A048.jpeg', '$2a$10$.M2.4Tw2D/ujbNnLNXy.GeeQgH7sFyuxkU9J3DiNzk3DReiick7aO', '0', '0', '2025-11-01 00:00:00', '0:0:0:0:0:0:0:1%0', '2026-01-19 11:40:23', NULL, '13488103555', '2025-11-27 15:16:53', '', '2025-12-16 17:27:06', '是多少粉丝'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (133, NULL, 21, NULL, '15202903075', '杨飞虎', NULL, '11', '11@11.com', '15202903075', '0', '', '$2a$10$ZP.fCPs8soWApYp6aQUO8eAkxWjTTllcIZLX8UmUaE9/xsIq4q0OK', '0', '0', '2025-12-02 17:23:25', '113.200.47.162', '2026-01-19 16:17:47', NULL, 'admin', '2025-11-27 18:02:30', '', '2025-12-09 10:31:07', '院校管理员'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (134, 'teacher001', 21, 27, '15202903077', '李老师', NULL, '22', '22@qq.com', '15202903077', '1', '', '$2a$10$dve3nHkLC2vJM.s9W6vqwODh.mA8eDUySOHE1qF7Xr6Ry2wY/mtA6', '0', '0', '2025-11-27 00:00:00', '127.0.0.1', '2025-12-02 17:18:55', NULL, '15202903075', '2025-11-27 18:15:30', '', '2025-12-02 17:10:15', NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (135, 'P0001', 17, 22, '13478787878', '张大千', NULL, '22', '13478787878@qq.com', '13478787878', '0', '', '$2a$10$LA2oyWD6.H78PzaejGWi5exP6BHus9BA8O4rtrJdNh96to9zrAlAK', '0', '0', '2025-12-01 00:00:00', '', NULL, NULL, '13488103555', '2025-12-01 15:17:32', '', '2025-12-01 17:04:56', NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (136, 'P0003', 17, 22, '13689898989', '张伟', NULL, '22', '13689898989@qq.com', '13689898989', '0', '', '$2a$10$89Cdwpc4SzGqxaWOdrOdseBS82/tXIuj2uu8YBDm9LHhuPgWXthV6', '0', '0', '2025-12-01 00:00:00', '127.0.0.1', '2025-12-12 09:46:06', NULL, '13488103555', '2025-12-01 15:18:18', '', '2025-12-01 17:04:55', NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (137, '4654651', 1, 1, '13335409925', '张三', NULL, '22', '1@qq.com', '13335409925', '1', '', '$2a$10$31McVp/y.a1t9BDQcqgcb.PKOK6Jl3ItnlwW.pQFIJskIVCuprdSO', '0', '0', '2025-12-04 00:00:00', '', NULL, NULL, 'admin', '2025-12-04 17:26:26', '', NULL, NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (138, '121212', 21, 27, '13811111111', 'asdfsadf', NULL, '22', '', '13811111111', '0', '', '$2a$10$OfWx1EpUykqnWNKMxFu7ve4xX53PiPqvmcCtPoOkN63uXio2TJTcq', '0', '0', NULL, '127.0.0.1', '2025-12-05 17:03:35', NULL, 'admin', '2025-12-05 17:02:32', '', NULL, NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (139, 'aaaaa', 2, 14, '15277777777', 'aaaaaaa', NULL, '22', '', '15277777777', '0', '', '$2a$10$w.6Tl1/6.oxgPI.eWSjvQeyKhFZWcQF7FVrPGBniAQkaXmoUhevFe', '0', '0', NULL, '127.0.0.1', '2025-12-05 17:40:03', NULL, 'admin', '2025-12-05 17:39:24', '', NULL, NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (140, 'sadfasdff', 2, 14, '15634444444', 'asdfasdfsa', NULL, '22', '', '15634444444', '0', '', '$2a$10$O1tu5QFESMt5gzL0O2HaRuVdxw5Mgos/IPXfhdW3u8tbyj16qk.yK', '0', '0', NULL, '', NULL, NULL, 'admin', '2025-12-08 15:38:46', '', NULL, NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (141, 'T521042', 1, 1, '13100000000', '紫霞', NULL, '22', '77@qq.com', '13100000000', '1', '/statics/2026/01/14/file_20260114115622A003.jpeg', '$2a$10$pD9RwijmcwEKyPK79MXjOuQY2YeEc9Ew3C30wiJHZMADZV3mHNgly', '0', '0', '2025-12-22 00:00:00', '', NULL, NULL, 'admin', '2025-12-22 15:38:44', 'admin', '2026-01-14 11:56:23', 'wu'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (144, '1212999', 1, 1, '15666666999', '张3锤', NULL, '22', 'ry99@qq.com', '15666666999', '1', '', '$2a$10$pWxYAkjbsaJ7cAc373BbMeSwipljmAsmb9z0oVv2kt3hHy8C.4j3G', '0', '0', '2025-12-02 00:00:00', '', NULL, NULL, 'admin', '2025-12-23 17:20:35', '', NULL, '测试员'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (145, 'T998888', 1, 1, '13188889999', 'haha88', NULL, '22', '7799@qq.com', '13188889999', '1', '/statics/2026/01/14/file_20260114113523A001.jpeg', '$2a$10$xXp3vAjYCK8rScNDIz2rs.ozpDfC2OywsWN9BGgvWzOrkSN6MKcm6', '0', '2', '2025-12-26 00:00:00', '127.0.0.1', '2026-01-14 11:21:32', NULL, 'admin', '2026-01-14 11:20:13', 'admin', '2026-01-14 11:35:23', 'wu'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (147, 'T007778', 1, 31, '13388990098', 'haha88', NULL, '22', '', '13388990098', '0', '', '$2a$10$M5eHYiEjBWS0N3oYfQyZje1PNuFfwiNi1h3T1EmeTth3YPBKT7oYS', '0', '2', '2026-01-04 00:00:00', '', NULL, NULL, 'admin', '2026-01-16 16:23:03', '', NULL, NULL); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (148, 'T123459', 1, 31, '15222222222', '杨老师', NULL, '22', '11@qq.com', '15222222222', '0', '', '$2a$10$PqQDB7Xbnn0TNC7LYcd0XecbLuKjdJeQ/RqgmjFvTcAItjwTeXgo2', '0', '0', '2026-01-15 00:00:00', '', NULL, NULL, 'admin', '2026-01-16 17:42:16', '', NULL, 'wu'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (149, NULL, 23, NULL, '13384994320', 'haha', NULL, '11', 'lj7788@126.com', '13384994320', '0', '', '$2a$10$GeGNPo4TIf8G4RvkcB4xB.9z1vT16t0rSh2W/x0EVDXrP2oVNABTC', '0', '0', NULL, '127.0.0.1', '2026-01-19 17:33:17', NULL, 'admin', '2026-01-19 16:56:47', '', NULL, '院校管理员'); INSERT INTO `sys_user` (`user_id`, `code`, `sch_id`, `dept_id`, `user_name`, `nick_name`, `user_card_id`, `user_type`, `email`, `phone_number`, `sex`, `avatar`, `password`, `status`, `del_flag`, `join_time`, `login_ip`, `login_date`, `pwd_update_date`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (150, NULL, 24, NULL, '13384994321', 'haha2', NULL, '11', 'lj7788@126.com', '13384994321', '0', '', '$2a$10$udAGPYtQQdTMRX2zFLBXXeLwBiCRLkfxM/CuXrPmznz793q1IIkc6', '0', '0', NULL, '127.0.0.1', '2026-01-19 17:30:24', NULL, 'admin', '2026-01-19 16:58:26', '', NULL, '院校管理员'); COMMIT; -- ---------------------------- -- Table structure for sys_user_class -- ---------------------------- DROP TABLE IF EXISTS `sys_user_class`; CREATE TABLE `sys_user_class` ( `user_id` bigint NOT NULL COMMENT '用户ID', `class_id` bigint NOT NULL COMMENT '所属班级' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='教师所带班级信息'; -- ---------------------------- -- Records of sys_user_class -- ---------------------------- BEGIN; INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (111, 5); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (111, 6); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (127, 25); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (127, 26); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (124, 6); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (125, 5); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (131, 25); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (131, 26); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (134, 30); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (135, 25); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (135, 26); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (136, 25); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (136, 26); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (137, 5); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (138, 30); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (110, 5); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (110, 6); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (126, 25); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (126, 26); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (145, 5); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (145, 6); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (145, 32); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (145, 33); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (141, 5); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (141, 6); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (141, 32); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (141, 33); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (115, 5); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (2, 5); INSERT INTO `sys_user_class` (`user_id`, `class_id`) VALUES (2, 6); COMMIT; -- ---------------------------- -- Table structure for sys_user_post -- ---------------------------- DROP TABLE IF EXISTS `sys_user_post`; CREATE TABLE `sys_user_post` ( `user_id` bigint NOT NULL COMMENT '用户ID', `post_id` bigint NOT NULL COMMENT '岗位ID', PRIMARY KEY (`user_id`,`post_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户与岗位关联表'; -- ---------------------------- -- Records of sys_user_post -- ---------------------------- BEGIN; INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (1, 1); COMMIT; -- ---------------------------- -- Table structure for sys_user_role -- ---------------------------- DROP TABLE IF EXISTS `sys_user_role`; CREATE TABLE `sys_user_role` ( `user_id` bigint NOT NULL COMMENT '用户ID', `role_id` bigint NOT NULL COMMENT '角色ID', PRIMARY KEY (`user_id`,`role_id`), KEY `idx_sys_user_role_user_role` (`user_id`,`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户和角色关联表'; -- ---------------------------- -- Records of sys_user_role -- ---------------------------- BEGIN; INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1, 1); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (2, 2); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (100, 101); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (101, 102); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (107, 120); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (108, 123); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (109, 127); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (112, 2); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (115, 2); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (116, 2); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (118, 102); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (125, 2); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (126, 183); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (127, 140); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (128, 3); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (131, 140); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (134, 179); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (135, 140); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (136, 140); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (137, 2); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (138, 179); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (139, 102); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (140, 102); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (141, 2); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (142, 2); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (143, 2); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (144, 2); INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (148, 2); COMMIT; -- ---------------------------- -- View structure for base_exam_question_view -- ---------------------------- DROP VIEW IF EXISTS `base_exam_question_view`; CREATE ALGORITHM = UNDEFINED SQL SECURITY DEFINER VIEW `base_exam_question_view` AS select `t`.`question_id` AS `question_id`,`q`.`question_type` AS `question_type`,`q`.`sch_id` AS `sch_id`,`q`.`create_by` AS `create_by` from ((select `base_chapter_content_resource`.`question_id` AS `question_id` from `base_chapter_content_resource` where (`base_chapter_content_resource`.`question_id` is not null) union all select `base_exam_info_question`.`question_id` AS `question_id` from `base_exam_info_question` where (`base_exam_info_question`.`question_id` is not null) union all select `base_homework_question`.`question_id` AS `question_id` from `base_homework_question` where (`base_homework_question`.`question_id` is not null)) `t` join `base_exam_question` `q` on((`t`.`question_id` = `q`.`id`))); -- ---------------------------- -- View structure for view_exam_info -- ---------------------------- DROP VIEW IF EXISTS `view_exam_info`; CREATE ALGORITHM = UNDEFINED SQL SECURITY DEFINER VIEW `view_exam_info` AS select `bei`.`id` AS `id`,`bei`.`sch_id` AS `sch_id`,`bei`.`exam_title` AS `exam_title`,`bei`.`exam_course_id` AS `exam_course_id`,`bei`.`exam_rank` AS `exam_rank`,`bei`.`single_num` AS `single_num`,`bei`.`single_mark` AS `single_mark`,`bei`.`multiple_num` AS `multiple_num`,`bei`.`multiple_mark` AS `multiple_mark`,`bei`.`estimate_num` AS `estimate_num`,`bei`.`estimate_mark` AS `estimate_mark`,`bei`.`full_mark` AS `full_mark`,`bei`.`pass_mark` AS `pass_mark`,`bei`.`use_number` AS `use_number`,((ifnull(`bei`.`single_num`,0) + ifnull(`bei`.`multiple_num`,0)) + ifnull(`bei`.`estimate_num`,0)) AS `question_count`,`bei`.`status` AS `status`,`bei`.`exam_time` AS `exam_time`,`bei`.`create_by` AS `create_by`,`su`.`user_name` AS `create_by_name`,`bei`.`create_time` AS `create_time`,`bei`.`update_by` AS `update_by`,`bei`.`update_time` AS `update_time`,`bei`.`remark` AS `remark` from (`base_exam_info` `bei` left join `sys_user` `su` on((`bei`.`create_by` = `su`.`user_id`))); SET FOREIGN_KEY_CHECKS = 1;